*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.body{
    background-color: black;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.img{
    width: 250px;
    height: 350px;
    background-color: red;
    margin: 0;
    padding: 0;
    border: 2px solid yellow;
    border-radius: 20px;
}

.img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: blur(60px);
}

.question{
    width: 500px;
    height: 100px;
    background-color: white;
    font-size: 8px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}


.answer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 500px;
    height: 50px;

}

button{
    width: 80px;
    height: 40px;
    border-radius: 5px;
    border: none;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    background-color: yellow;

}
