* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: linear-gradient(135deg, #6EC6FF, #3A7BD5);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    position: relative;
    background-size: cover;        
    background-repeat: no-repeat;  
    background-position: center;   
    background-attachment: fixed; 
}

.clouds {
    background: url("../img/imgWeat/FcsA.gif") center center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.35;
}

.weather-container {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.weather-app {
    background: rgba(255, 255, 255, 0.18);
    padding: 25px;
    border-radius: 20px;
    width: 260px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.30);
}

.location {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.icon {
    font-size: 55px;
    margin: 15px 0;
}

.temperature {
    font-size: 2.7em;
    font-weight: bold;
}

.description {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.details {
    margin-top: 15px;
    text-align: left;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 0.95em;
}
@media (max-width: 600px) {
    .weather-container {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        margin-top: 600px;
    }
    .clouds {
        width: 100%;
        height: 1300px;
    }
    body {
        overflow: auto;
    }
   
}