@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#logo{
    display: inline-block;
    position: absolute;
    left: 18px;
    top: 18px;
}

#logo img{
    display: block;
    margin: auto;
    width: 55px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    width: 100%;
    height: 100vh;
    background: #d5d3f0;
}

.cards{
    flex-wrap: wrap;
}

.cards .card{
    width: 270px;
    height: 385px;
    border-radius: 30px;
    box-shadow: 7px 7px 10px #cbced1, -5px -5px 8px white;
    margin: 30px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #5c5470;
    transition: all ease-out 0.5s;
}

.cards:hover .card{
    filter: blur(15px);
    transform: scale(1);
    opacity: 0.5;
}

.cards .card:hover{
    background: #2a2438;
    filter: blur(0);
    transform: scale(1.1);
    opacity: 1;
}

.content{
    flex-direction: column;
    padding: 10px;
}

.content img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-top: 10px;
    filter: drop-shadow(4px 4px 4px #2a2438);
}

.content h1{
    font-size: 25px;
    padding-top: 8px;
}

.content p{
    text-align: center;
    font-size: 14px;
    padding: 10px;
}

.content button{
    padding: 4px 20px;
    font-size: 17px;
    border-radius: 50px;
    background-color: rgb(238, 248, 100);
    color: #352f44;
    outline: none;
    border: none;
    cursor: pointer;
}

.content button:hover{
    background-color: rgb(228, 215, 43);
}