*{
    box-sizing: border-box;
}

body{
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    color: navy;
    margin:0;
    padding: 0;
}

.container {
    background-color: navy;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid black;
    display:flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 100vw;
    right: 6%;
    margin-bottom: 25px;
    text-align:left;
    margin-left: auto;
    margin-right: auto;
}

.applyform {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 1rem;
    column-gap:  8rem;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
    
input, textarea, select{
    width:30vw;
    font-size: 20px;
    padding:5px;
    margin: 5px;
    color: black;
    background-color: lightgray;
}

label {
    color: white;
    width:30vw;
    font-size: 20px;
    padding:5px;
    margin: 5px;
}   

img{
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hiddenf,.hiddenm, .hiddeng{
    display: none
}
.button {
    grid-column: span 2;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: .5rem 1rem;
    font-weight: bold;
    cursor:pointer;
    border-radius: 1rem;
    margin: 15px auto;
}

.buttoncontainer a,#applybutton {
    display: inline-block;
    text-decoration: none;
    padding: 15px;
    background-color: navy;
    border: 2px solid white;
    color: white;
    margin: 10px;
    width: 200px;
    cursor: pointer;
}

.buttoncontainer {
    display: flex;
    flex-direction: column;
    position: absolute;
   
    top: 30px;
    right: 30px;
}

.hero{
    background-image: url("../images/washingtondc.jpg");
    height: 300px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    font-size: 50px;
    font-style: italic;
}

/* Media Query */
@media screen and (max-width: 960px) {
    #weather, #countdown {
      display: none;
    }
    .buttoncontainer {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 50%;
        text-align: left;
      }
    .container {
        margin: 150px auto;
    }
}

@media screen and (max-width: 480px) {
    #weather, #countdown {
      display: none;
    }
    .buttoncontainer {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 50%;
        text-align: left;
      }
      .container {
        margin: 150px auto;
    }
}