

/* Main Section */

.container-fluid {
    font-family: 'Montserrat', sans-serif;
    padding: 0 0;
}
.dark-colored-section {
    background-color: #d1cfcf;
    padding: 3% 10% 1%;
    border-bottom: 1px solid #6B7AA1;
}
.navbar-brand {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #11324D !important;
    padding-left: 0;
    padding-bottom: 3px;
    border-bottom-style: solid;
    border-bottom-width: 4px;
    width: fit-content;
    border-color: #11324D;
}
.nav-item, .nav-link {
    font-size: 1rem;
    font-weight: bold;
    padding: 0 10px;
    color: #11324D !important;
}

/* app-section */

*{margin: 0; padding: 0; box-sizing: border-box;}

#weather-app-section {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-image: url("toronto1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.weather-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
}
.header {
    padding: 50px 20px 30px 20px;
}
.header h1 {
    font-size: 50px;
    color: #fbb034;
    text-shadow: 1px 3px rgba(0, 0, 0, .9);
}
.header input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 0;
    outline: 0;
    border-bottom: 2px solid #fbb034;
    margin-bottom: 30px;
    text-align: center;
    font-size: 20px;
    color: #f2f2f2;
}
.city {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 1px 3px rgba(0, 0, 0, .8);
}
.temp {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 5px rgba(0, 0, 0, 1);
}
.desc {
    font-size: 25px;
    font-style: italic;
    text-shadow: 1px 3px rgba(0, 0, 0, .8);
    margin-bottom: 10px;
}
.minmax {
    font-size: 24px;
    text-shadow: 1px 3px rgba(0, 0, 0, .8);
}



