*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url("https://i.pinimg.com/736x/77/4c/32/774c32c07b9dd51567da1a1cc9a79601.jpg") center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container{
    width: 40%;
    height: 80%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    color: white;
}

.upper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upper img{
    width: 90px;
    height: 80px;
    border-radius: 100%;
}

.lower{
    height: 70%;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.option{
    background-color: rgba(0, 0, 0, 0.4);
    height: 20%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.option img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.option img:hover{
    transform: rotate(360deg);
}

.option:hover{
    background-color: rgba(23, 209, 116, 0.6);
}

.final{
    width: 40%;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 10px;
}

@media (max-width:768px){
    .container{
        height: 90%;
        width: 70%;
    }
    .final{
        display: none;
    }
}