body {
  margin: 0;
  font-family: 'Montserrat', 'sans-serif';
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/nature_8.jpg");
}
.container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: 1fr 2fr;
  grid-template-areas:
  "h h h"
  ". m .";

}
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-area: h;
  font-family: 'Montserrat', 'sans-serif';


}
#title {
  color: #E3AFBC;
  margin-top: 0px;
}
#title h1{
  margin-top: 0px;
  font-size: 3em;
  margin-bottom: 0px;
}
#title p{
  margin-top: 0px;
  padding-bottom: 10px;
}
main {
  grid-area: m;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#content {
  border: solid;
  border-color: #FDE8E9;
  width: 50%;
  text-align: center;
  height: 100%;
  color: white;
  border-radius: 1em;
  padding-bottom: 20px;
}
#content h3 {
  font-size: 2em;
  color: #DCABDF;
}

a {
  color: inherit;
}

button {
  font-family: 'Montserrat', 'sans-serif';
  font-size: 16px;

}

button:hover {
  background-color: #8FC1E3;
  color: white;
}

input {
  margin-bottom: 10px;
   font-family: 'Montserrat', 'sans-serif';
  font-size: 13px;
}
a {
  text-decoration: none;
  color: inherit;
}
input {
  border: 0;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 1.3rem;
  padding: 7px 0;
  background: transparent;
  color: #FDE8E9;
  transition: border-color 0.2s;
}
input:focus {
  border-bottom-color:  8FC1E3;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}

button {
  background-color: #861657;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}