:root {
    --primary-dark-color: #0b131e;
    --secondary-dark-color: #202b3b;
    --tertiary-dark-color: #2a3546;
    --text-color-dark-1: #c5cbd4;
    --text-color-dark-2: #9198a1;
}

h1 {
    font-family: "Merriweather Sans", sans-serif;
}

.text-off {
    color: var(--text-color-dark-2);
}

body {
    background-color: var(--primary-dark-color);
}

.section {
    background-color: var(--secondary-dark-color);
    border-radius: 20px;
}

/* Start of spinner */
.spinner {
    width: 40px;
    height: 40px;

    position: relative;
    margin: 50px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--text-color-dark-1);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* End of spinner */
/* Start of aside navbar */
.my-nav {
    color: var(--text-color-dark-1);
}

@media (max-width: 992px) {
    .my-nav {
        justify-content: space-evenly;
    }
}

.menu-item {
    border-radius: 20px;
    transition: 0.3s all ease;
}

.menu-item.active,
.menu-item:hover {
    background-color: var(--tertiary-dark-color);
    cursor: pointer;
    color: white;
}

/* End of aside navbar */

/* Search */
main {
    color: white;
}

.search {
    background-color: var(--secondary-dark-color);
    border: none;
    border-radius: 20px;
    color: var(--text-color-dark-2);
    padding: 10px 20px;
    color: white !important;
}

.search::placeholder {
    color: var(--text-color-dark-2);
}

.search:focus {
    background-color: var(--secondary-dark-color);
}

/* Highlights */
.highlight-name {
    font-size: 2rem;
}

.title {
    font-size: 0.8rem;
}

.display-1 {
    font-size: 3.5rem;
}

.highlights .icon {
    width: 60px;
}

/* Hourly Forecast */
.forecast-today .icon {
    width: 40px;
}

.forecast-today .box:not(:last-of-type) {
    border-right: 1px solid var(--text-color-dark-2);
}

@media (max-width: 992px) {

    .forecast-today .box:nth-child(3) {
        border-right: none;
    }
}
@media (max-width: 768px) {
    .forecast-today .box:not(:last-of-type) {
        border-right: 1px solid var(--text-color-dark-2);
    }
    .forecast-today .box:not(:last-of-type):nth-child(even) {
        border-right: none;
    }
}

/* Seven Day Forecast */
.seven-day-forecast .icon {
    width: 40px;
}

.seven-day-forecast .box .day-name,
.seven-day-forecast .box .high,
.seven-day-forecast .box .low
{
display: inline-block;
width: 50px;
}
.seven-day-forecast .box .high{
    color: white;
}

.seven-day-forecast .box:not(:last-of-type) {
    border-bottom: 1px solid var(--text-color-dark-2);
}