*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#container{
    width: 90%;
    height: 800px;
    margin-left: 5%;
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;

}

body{
    background: linear-gradient(135deg, #363636, #08ebeb, #3d3d3d);
}

.container__item{
    border: 1px rgb(0, 0, 0) solid;
    background: linear-gradient(135deg, #ffffff, #494444, #161315);
    width: 48%;
    height: 600px;;
    margin-top: 8%;
    border-radius: 10%;
    text-align: center;
}


.container__item:hover{
    transform: translateY(-1px);
    box-shadow: 1px 2px 1px 1px rgb(0, 0, 0);
}

.container__img{
    width: 90%;
    height: 170px;
    margin-top: 15px;
    border-radius: 10%;
}

.container__img:hover{
    transform: translateY(-1px);
    box-shadow: 1px 2px 1px 1px rgb(22, 22, 22);
}


.container__h1{
    color: rgb(2, 2, 2);
    font-size: 25px;
    font-family: cursive;
    position: absolute;
    text-shadow: 1px 1px 2px rgb(3, 245, 213);
    
    
}

.container__h2{
    color: rgb(2, 2, 2);
    font-size: 15px;
    font-family: cursive;
    font-style: oblique;
    text-shadow: 1px 1px 2px rgb(3, 245, 213);
}

.container__temperature{

    display: flex;
    justify-content: space-evenly;
    margin-top: 1%;
}

.temperature__h3{
    color: rgb(2, 2, 2);
    font-size: 15px;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgb(3, 245, 213);
    
}

.temperature__p{
    color: rgb(2, 2, 2);
    font-size: 15px;
    margin-top: 10px;
    font-family: cursive;
    text-shadow: 1px 1px 2px rgb(3, 245, 213);
}

.temperature__img{
    width: 20%;
    border-radius: 10%;
}

.container__description{
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-top: 100px;
}

.card{
    background: linear-gradient(135deg, #ffffff, #494444, #161315);
    width: 30%;
    border-radius: 10%;
    box-shadow: 1px 1px 1px rgb(2, 253, 253);
}

.card__ul{
    list-style: none;
    border-radius: 10%;
}

.ul__li{
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-family: cursive;
    text-shadow: 1px 1px 2px rgb(3, 245, 213);
}

.card:hover{
    transform: translateY(-1px);
    box-shadow: 1px 2px 1px 1px rgb(0, 0, 0);
}