#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
    color: #333;
}
header {
    color: white;
    padding: 10px 0;
    text-align: center;
}

#weather-result {
    padding: 10px;
    text-align: center;
    color: #f7f7fe;
}

h2, h3 {
    color: #f7f7fe;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-style: italic;
}
#forecast {
    color: white;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin-top: 0;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: #4c93af;


}
.search-input {
    background-color: #f7f7fe;
    padding: 20px;
    border: none;
    border-radius: 5px;
    width: 70%;
    font-size: 16px;
}

.submit-button {
    background-color: #4c93af;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left:5px;
}

.submit-button:hover {
    background-color: #459da0;
}
footer{
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 12px;
    color:rgba(0, 0, 0, 0.6)
}
#temperature{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
#icon{
    font-size: 30px;
    margin-top: -10px;
    margin-bottom: -10px;

}
.icons img{
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-left: 30px;

}
.hours {
    flex-wrap: wrap;
    background-color: #459da0;
    padding: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    margin-bottom: 10px; 
}

.day-1, .day-2, .day-3, .day-4, .day-5, .day-6, .day-7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5px;
    padding: 10px;
    border-radius: 5px;
    width: 80px;
    font-size: 14px;
    color: #f7f7fe;
    font-weight: bold;

}
.icon, .temp{
    display: flex;
    justify-content: space-around;
    margin-left: 100px;
}
#weekly-forecast {
    margin-top: 20px;
    background-color: #459da0;
} 
#days{
    background-color: #459da0;

}
