/* Global Style */
body {
    font-family: 'Bitter', serif;
    height: 100%;
}

/* Head bar Style */
#header {
    min-height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 300%;
    color: white;
}

/*Code for pinned city-bar during scrolling
.city-bar {
    z-index: 1;
    background-color: white;
} */

/* Input Form / City Bar Style */
#city-input-1, #city-input-2 {
    font-size: 125%;   
}

span {
    font-size: 300%;
    padding: 0px 10px 0px 0px;
}

/* Pop-up Modal Style */
.modal {
    font-size: 125%;
    background-color: teal;
    color: white;
}

/* Main Data Display Style */
/* City Name Style */
.header-container-1 {
    margin-top: 2%;
    width: 400px;
}

.header-container-2 {
    margin-top: 2%;
    width: 400px;
}

.city-header{
    width: 400px;
    text-decoration: underline;
    text-decoration-color: #4db6ac;
}

/* Map Data Style */
#map-container-1 {
    margin-top: 2%;
}

#map-container-2 {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.map-api{
    width: 400px;
    height: 400px;
}

/* Covid Data Style */
.covid-api-div1, .covid-api-div2 {
    background-color: teal;
    color: white;
    font-size: 110%; 
    border-radius: 20px;
    margin: 1% 0%;
    padding: 1%;
    width: 400px;
}

#covid-container-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#covid-container-2 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

/* Job Data Style */
#jobs-container-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#jobs-container-2 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.mainh51, .mainh52 {
    font-size: 110%; 
    margin: 1% 0%;
    padding: 1%;
    width: 400px;
}

.job0, .job1, .job2 {
    background-color: teal;
    color: white;
    width: 400px;
    margin: 1% 0%;
    padding: 1%;
    border-radius: 20px;
    font-size: 70%;
    text-align: left;
}

.job-0, .job-1, .job-2 {
    background-color: teal;
    color: white;
    width: 400px;
    margin: 1% 0%;
    padding: 1%;
    border-radius: 20px;
    font-size: 70%;
    text-align: left;
}

/* Weather Data Style */
#weather-container-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#weather-container-2 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.weather-api-div1, .weather-api-div2 {
    background-color: teal;
    color: white;
    font-size: 110%; 
    border-radius: 20px;
    margin: 1% 0%;
    padding: 1%;
    width: 400px;
}

#temp-icon {
    width: 90px;
}
    
.deg, .percent, .mph {
    font-size: 15px;
}


