body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.input-group {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.weather-info {
    display: none;
}

.weather-info.card {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

@media screen and (max-width: 800px) {
    .container {
        padding: 20px;
    }
}
