body{
    margin: 0;
    padding: 0;
    background-color: pink;
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh; 
}
h2, h4 {
    font-weight: 10vh;
}
.card{
    width: 85vh;
    height: 70vh;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
}
.card img{
    max-width: 23vh;
}

.hidden{
    display: none;
}
.yes{
    background-color: rgb(242, 21, 146);
    color: white;
    text-decoration: none;
    padding: 1vh 2vh;
    position: relative;
    border-radius: 15px;
    border-color: rgb(242, 21, 146);
}
.yes:hover{
    padding: 2vh 4vh;
    border-radius: 20px;
}

.no{
    background-color: rgb(215, 214, 218);
    color: black;
    text-decoration: none;
    padding: 1vh 1.5vh;
    border-radius: 15px;
    border-color: rgb(215, 214, 218);
    position: absolute;
}

