* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 62.5%;
  background-color: #2C3E50;
}

h1, h2, h3, p, label {
   color: white;
}


.wrapper {
  display: grid;
  grid-template-columns: repeat(2,50%);
}

.wrapper2 {
  display: grid;
  grid-template-columns: repeat(2,50%);
  border: 2px solid black;
}

.col2 {
  border-left: 2px solid black;
  padding-left: 0.5rem;
}

h1, h2, h3 {
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  
}

h3 {
  font-size: 1.35rem;
}

p, label {
  font-size: 1rem;
}

p {
  margin-top: 0.5rem;
}

a {
  text-decoration: none;
  color: #007BFF;
}

.centered {
  text-align: center;
}

input[type='submit'] {
  border: 2px solid black;
}

.validateBtn {
  margin: 0.5rem 0;
}