html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Albert Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.video-background {
    position: fixed;
    /* stays in the background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* behind everything else */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover the whole screen */
}

a {
    color: #ffc800;
    text-decoration: none;
}

main {
    padding: 30px;
}

header {
    padding-bottom: 15px;
}

.weather-app {
    background: #5e69745b;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 15px;
    border: none;
    width: 90%;
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

.weather-app:hover {
    background: #415e8ca4;
    transition: all 800ms ease-in-out;
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    color: #ffffff;
}

.search-input {
    background-color: #f0f9fc;
    border: none;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    padding: 10px;
    width: 75%;
    border-radius: 6px;
    font-family: Albert Sans;
}

.search-button {
    margin-left: 5px;
    font-size: 16px;
    background-color: #48b3ff;
    color: white;
    border: none;
    padding: 15px;
    line-height: 1;
    border-radius: 5px;
    font-family: Albert Sans;
}

.search-button:hover {
    background-color: #3b94d4;
    transition: all 400ms ease-in-out;
}

.current-time {
    margin: 0, auto;
    color: #ffffff;
    font-size: large;
}

.current-city {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    color: #ffffff;
}

.current-city:hover {
    font-size: 43px;
    transition: all 250ms ease-in-out;
}

.current-weather {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.weather-info {
    display: flex;
    flex-direction: column;
    /* stack city, time, humidity vertically */
}

.current-temperature-value {
    font-size: 60px;
    font-weight: bold;
    color: #f7feff;
}

.current-temperature-value:hover {
    font-size: 65px;
    transition: all 450ms ease-in-out;
}

.current-temperature-icon {
    position: relative;
    top: -8px;
    font-size: 50px;
    margin-right: 10px;
}

.current-temperature-icon:hover {
    font-size: 55px;
    transition: all 450ms ease-in-out;
}

.current-temperature-unit {
    font-size: 28px;
    position: relative;
    top: -38px;
    color: #f7feff;
}

.current-details {
    color: #f7feff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.current-details strong {
    color: #ffc800;
}

footer {
    color: #f6fdff;
    padding: 30px;
    text-align: center;
}