@font-face {
  font-family: Exo;
  src: url(Exo-font/Exo-VariableFont_wght.ttf);
}

body, h1, h2, h3, h4, h5, h6, p {
  font-family: Exo, Verdana, Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
h1 {
	font-weight: bold;
	font-size: 50px;
}

h2 {
	color: #23238b;
}

input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

a:link, a:visited {
  background-color: #23238b;
  color: white;
  border: 2px solid grey;
  border-radius: 4px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: white;
  color: black;
}


label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #23238b;
  color: white;
  padding: 12px 20px;
  margin-top: 10px;
  border: 2px solid grey;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

input[type=submit]:hover {
  background-color: white;
  color: black;

}

.container {
  border: 2px solid grey;
  border-radius: 15px;
  background-color: #fafafa;
  padding: 20px;
}

.col-50 {
  float: left;
  width: 50%;
  padding: 12px;
}


/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .col-50 {
    width: 100%;
    margin-top: 0;
  }
}