*{
    padding: 0;
    margin: 0;

    text-decoration: none;

    border: none;
    outline: none;

    position: relative;
}
body{
    max-width: 100svw;
    min-height: 100svh;
    background-image: linear-gradient(to right bottom,rgb(99, 99, 202) ,rgb(170, 57, 170) );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}
.ch{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    box-shadow: 0 0 10px gray;
    width: 500px;
    height: 200px;
    padding: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0 10px white;
}
.header h2{
    color: rgb(65, 65, 202);
    text-align: center;
    padding: 5px;
    font-size: 28px;
}
.header p{
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}
.choose{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
#Emotions{
    padding: 10px 20px;
    border: 2px solid rgb(65, 65, 202);
    border-radius: 10px;
    width: 100%;
    color: rgb(65, 65, 202);
    font-size: 16px;
}

.card{
    margin: 20px;
    width: 700px;
    background-color: white;
    box-shadow: 0 0 10px gray;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px white;
}
.card h2{
    color: rgb(65, 65, 202);
    text-align: center;
    margin-bottom: 10px;
}
.card .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.card .content .info{
    flex: 1;
}
.card .content .info ul{
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: gray;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card .content .imgs img{
    height: 220px;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
    transition: all 0.3s ease-in-out;
}
.card .content .imgs img:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.search{
    display: none;
}
.search-parent{
    height: fit-content;
    padding: 10px;
    position: absolute;
    top: 20px;
}

@media(max-width:768px){
    .ch,.card{
        width: 80svw;
    }
    .ch h2{
        font-size: 24px;
    }
    .ch p{
        font-size: 14px;
    }
    .card{
        margin-top: 100px;
        font-size: 14px;
    }
    .card .content{
        flex-direction: column-reverse;
    }
}
