body {
    line-height: 1.9;
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: url(../images/france.svg);
    background-size: cover;
    background-position: center;
}


html {
    scroll-behavior: smooth;
}

a,
a:hover {
    text-decoration: none;
    color: white;
}


.main-color {
    color: #37aec3
}

input:focus-visible {
    outline: none;
}

.btn {
    transition: all 0.3s;
}

.btn:hover {
    color: #37aec3;
    background-color: #fff;
    border: 1px solid #37aec3;
}

.display-temp #search-bar {
    padding: 5px 15px;
    border: 1px solid #3199ab;
    border-radius: 20px;
}

.display-temp .temp-card:first-of-type {
    background-color: #3199ab;
}

.display-temp .temp-card:nth-of-type(2),
.display-temp .temp-card:nth-of-type(3) {
    background-color: #83bbc4;
    transition: all 0.3s;
}

.display-temp .temp-card:nth-of-type(2):hover,
.display-temp .temp-card:nth-of-type(3):hover {
    background-color: #3199ab;
}

.display-temp .temp-card:nth-of-type(2) {
    margin: 0% 4%;
}

.display-temp .temp-card:first-of-type .day-and-date {
    background-color: #374850;
    margin: 0;
}

.display-temp .temp-card .day-and-date {
    background-color: #455a64;
    color: #bfc1c8;
    padding: 10px 25px;
}

.display-temp .temp-card .day-and-date p {
    margin: 0 !important;
}

.display-temp .temp-card #location {
    font-size: 22px;
    text-shadow: 0 0 1px #fff, 0 0 1px #fff
}

.display-temp .temp-card .temp-datails {
    padding: 25px;
    color: #fff;

}

.display-temp .temp-card .temp-datails #today-description,
.display-temp .temp-card .temp-datails .nextDay-description {
    font-size: 14px;
    color: #455a64;
    text-shadow: 0 0 1px #455a64, 0 0 1px #455a64;
}

footer {
    background-color: #374850;
    bottom: 0;
}

footer i {
    cursor: pointer;
    transition: all 0.3s;
}

footer i:hover {
    color: #37aec3;
}