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

.screen {
    background-image: url(images/bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card-1, .card-2 {
    width: 300px;
    margin: 0 10px;
}

.card-1{
    width: 90%;
    max-width: 440px;
    color: hsl(0, 0%, 100%);
    text-align: center;
    padding: 50px 30px;
    border: 2px solid rgba(255, 255, 255, 2);
    background: rgb(25, 46, 93);
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur;
}

.card-1 img{
    width: 170px;
    border-radius: 50%;
}

.card-1 h2{
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
}

.card-1 p{
    font-size: 20px;
    margin: 10px auto;
    font-weight: normal;
}

.card-1 .reseau img{
    width: 60px;
    border-radius: 50%;
    margin: 10px 5px;
    transition: background 0.3s;
}

.card-1 .reseau img:hover{
    background: hsl(0, 0%, 100%);
}


.card-2 {
    width: 60%;
    margin: 50px auto 0;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 0%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    padding: 40px 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
}

.search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search input{
    border: 0;
    outline: 0;
    padding: 10px 25px;
    height: 60px;
    border-radius: 20px;
    margin-right: 10px;
    flex: 1;
}

.search button {
    margin-top: 12px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.error {
    color: #006400;
    margin-top: 10px;
    display: none;
}

.weather-container {
    background-image: url('images/bgg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#realisationsButton {
    margin-top: 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}
#realisationsButton:hover {
    background-color: white;
    color: black;
}
.card {
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
}
.scrollable {
    overflow-y: hidden;
    height: 100vh;
}

.weather {
    margin-top: 20px;
    text-align: center;
}

.weather_icons {
    width: 170px;
    height: 170px;
    margin-bottom: 10px;
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.col{
    margin-top: 20px;
    flex-basis: 45%;
    text-align: center;
}

.wind{
    margin-top: 20px;
}

.humidity{
    margin-top: 20px;
}

.col img{
    width: 70px;
    margin-right: 10px;
}

