* {
    margin: 0;
    padding: 0;
  }

body{
  line-height: 1;
  background-color: rgb(129, 203, 219);
  margin-top: 0px;
}

/* Navbar*/
.mobile-container {
    max-width: 100%;
    margin: auto;
    height: 500px;
    color: white;
    border-radius: 10px;
  }
  
  .topnav {
    overflow: hidden;
    background-color: #ffb4da;
    position: relative;
  }
  
  .topnav #myLinks {
    display: none;
    font-family: "Lobster", sans-serif;
  }
  
  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
    display: block;
  }
  
  .topnav a.icon {
    background: #976638;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .active1 {
    background-color: #976638;
    color: white;
  }
  
  .logo {
    background-color: #976638;
    width: 50px;
    height: 50px;
  }
  
  .title{
    margin-top: -52px;
    text-align: center;
    font-size: xxx-large;
    font-family: "Lobster", sans-serif;
  }
  
  .dropdown {
    background-color: #976638;
    width: 45px;
    height: 45px;
  }
  
  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10%;
    background-color: #976638;
    color: white;
    text-align: center;
    font-family: "Lobster", sans-serif;
    padding-top: 50px;
  }
  

/*Contact Form*/
form {
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  width: 50%;   
  height: 70%;
  padding: 40px;
  color: #976638;
  background-color: #ffb4da;
  font-family: "Krub", sans-serif;
  text-align: center;
  margin: auto;
  margin-top: 20%;
}

.button {
  background-color:#976638;
  color: white;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  font-family: "Krub", sans-serif;
  border:#976638;
}