body {
    height: 98vh;
    width: 98vw;
    max-height: 98vh;
    max-width: 98vw;
}

#container {
    height: 80%;
    width: 80%;
    max-height: 80%;
    max-width: 80%;
    background-color: black;
    margin: auto;
    margin-top: 5%;
    opacity: 80%;
    color: white;
}

#search-bar {
    color: white;
    display: flex;
    justify-content: flex-end;
    padding-top: 3em;
    padding-right: 2em;
}

.search-location {
    font-size: 5vh;
}

#description {
    font-size: 4vw;
}

#city {
    font-size: 5vw;
}

#temperature {
    font-size: 7vw;
}

#results-container {
    margin-left: 2vw;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    opacity: 80%;
    padding: 10px;
}

@media only screen and (max-width: 800px) {
    .search-location {
        font-size: 5vw;
    }
    
    #description {
        font-size: 4vh;
    }

    #city {
        font-size: 5vh;
    }

    #temperature {
        font-size: 7vh;
    }
  }
