html,
body {
    font-family: helvetica neue, helvetica, arial, sans-serif;
    font-weight: 200;
    margin: 0;
}

#body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #f9f3e2;
    color: #132436;
    height: 100vh;
}


.banner {
    width: 100%;
    background-color: #132436;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    /* padding: 10px; */
    z-index: 1000;
    height: 65px;

  }
  #contact-banner {
    bottom: 0;
    left: 0;
    justify-content: center;
  }

  #top-banner {
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  #contact-banner a, #top-banner a {
    padding: 20px;
    color: #f9f3e2;
    /* text-decoration: none; */
    font-size : x-large;
    text-underline-offset: 3px;
  }

h1 {
    background-color: #132436;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

form {
    width: -webkit-fill-available;
    margin: 0 15%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 600px;

}

label {
    display: block;
    margin-bottom: 8px;
}

input[type="text"], 
input[type="email"], 
textarea {
    width: -webkit-fill-available;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #555;
}


@media only screen and (min-device-width: 350px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 1) {
    form {
        width: -webkit-fill-available;
        margin: 0 5%;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}