* {
    margin: 0;
    padding: 0;
}

.body {
    height: 100vh;
    width: 100vw;
    background-color: lightpink;
    background-size: cover;
    background-repeat: none;
    
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    height: 450px;
    width: 400px;
    background-color: transparent;
    border: none;
    background-color: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0px 0px 2px black;
    
}

.container .reaction {
    height: 55%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .reaction img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    position: absolute;
}

.container .reaction .recnorm {
    //opacity: 0;
}

.container .reaction .recyes {
    opacity: 0;
}

.container .reaction .recno {
    opacity: 0;
}

.container .text {
    height: 20%;
    width: 100%;
    align-content: center;
    text-align: center;
    margin-top: 0px;
}

.container .text h1 {
    color: palevioletred;
    font-size: 32px;
    font-weight: 800;
    width: 100%;
}

.container .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    height: 20%;
    margin-bottom: 0px;
}

.container .buttons #yes {
    height: 50px;
    width: 80px;
    font-size: 20px;
    font-weight: 500px;
    border-radius: 5px;
    border: 1px solid deeppink;
    box-shadow: 0px 0px 20px hotpink;
    margin-right: 144px;
    position: sticky;
    z-index: 2;
}

.container .buttons #no {
    height: 50px;
    width: 80px;
    font-size: 20px;
    font-weight: 500px;
    border-radius: 5px;
    border: 1px solid deeppink;
    box-shadow: 0px 0px 20px hotpink;
    margin-left: 144px;
    position: absolute;
}

.btn {
    background-color: hotpink;
    color: white;
    transition: all ease-in-out 0.4s;
}

.btn:hover {
    background-color: deeppink;
    cursor: pointer;
}

@media screen and (width <= 414px) {
    .container {
        width: 160px;
        height: 200px;
        padding: 1rem;
    }
    
    .container .reaction img {
        height: 50px;
        width: 50px;
    }
    
    .container .text h1 {
        font-size: 12px;
    }
    .container .buttons #yes{
        width: 38px;
        height: 28px;
        margin-right: 56px;
        font-size: 12px;
    }
    .container .buttons #no{
        width: 38px;
        height: 28px;
        margin-left: 56px;
        font-size: 12px;
    }
    
}