@import url('https://fonts.googleapis.com/css2?family=Galindo&display=swap');
body {
    margin: 0;
    font-family: 'Galindo', cursive;
    font-style: normal;
    font-weight: normal;
    background-color: lightblue;
    text-align: center;
}

#red {
    color: red;
}

#orange {
    color: orange;
}

.title {
    font-size: 54px;
}

/* CSS codes and styling are all referenced from Figma 
   Authors: Figma Team (team info at: https://www.figma.com/developers)
   URL: https://www.figma.com/file/xBaFy4cDQfDUgunYFciufl/One-Trip-Wireframe?node-id=0%3A1 */
   
@media (max-width: 425px) {
    #mapDiv {
        margin-top: 30px;
        text-align: center;
    }
    iframe {
        width: 320px;
        height: 320px;
        border: none;
    }
    #easteregg {
        position: absolute;
        top: 30%;
        left: 10%;
        width: 80%;
        height: 30%;
        z-index: 1;
    }
    h2 {
        margin-top: 20px;
    }
    #pac-input {
        height: 40px;
        width: 75%;
        font-size: 20px;
    }
}

@media (min-width: 426px) and (max-width: 1023px) {
    #mapDiv {
        margin-top: 15px;
        text-align: center;
    }
    h2 {
        margin-top: 30px;
        font-size: 50px;
    }
    #pac-input {
        height: 60px;
        width: 75%;
        font-size: 30px;
    }
    #waitTimes {
        font-size: 35px;
    }
}

@media (min-width: 1024px) {
    #mapDiv {
        width: auto;
        height: 80vh;
        margin-top: 15px;
        text-align: center;
    }
    h2 {
        margin-top: 30px;
        font-size: 50px
    }
    #pac-input {
        height: 60px;
        width: 75%;
        font-size: 40px;
    }
    #waitTimes {
        font-size: 40px;
    }
}


/* Always set the map height explicitly to define the size of the div
        * element that contains the map. */

#map {
    margin: auto;
    height: 60%;
    width: 75%;
    margin-top: 15px;
    margin-bottom: 20px;
}


/* Optional: Makes the sample page fill the window. */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#description {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
}

#infowindow-content .title {
    font-weight: bold;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

.pac-card {
    margin: 10px 10px 0 0;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    font-family: Roboto;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
}

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

.pac-controls label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-weight: 300;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    border: 2px solid black;
}

#pac-input:focus {
    border-color: #4d90fe;
}

#title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

#target {
    width: 345px;
}