body {
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  background-color: #c0fdfb;
  margin:0px;
}

.header {
  background-color: #fad4c0;
  color:black;
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-areas:
      "a a b"
      "c c d";
  justify-content:space-between;
  gap: 10px;
  padding: 10px;
}

.landing_options {
  display:flex;
  flex-direction: row;
  justify-content:flex-start;
  padding: 0 50px;
}

.landing_items {
  padding:20px;
  border: none;
  background-color:#fad4c0;
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  height:50px;
}

.logo {
  font-family: "Times New Roman", Times, serif;
  font-size:30px;
  padding:10px;
}

.dropdown {

}

.dropdown_items {
  display:none;
  float:right;
}

.content {
  width:100%;
  height: 85%;
}

.dropdown:hover .dropdown_items{display:grid;}

.modal_background{
  display: none;
  position:fixed;
  z-index: 1;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.4);
}

.modal_window{
  background-color:white;
  margin:15px;
  width: 40%;
  height: 40%;
  position:absolute;
  top:30%;
  left:30%;
}

.form{
  display:flex;
  flex-direction:column;
  align-items:center;
  height:100%;
  justify-content:space-evenly;
}

.slogan{
  padding: 140px 0;
  font-size:50px;
  text-align:center;
}

.footer{
  position:fixed;
  width:100%;
  padding:40px 0;
  bottom:0;
  background-color:#b09e99;
  text-align:center;
}

