* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    display: flex;
    color:  rgb(34, 34, 34);
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {

    background: white;
    width: 100%;
    max-width: 450px;

    padding: 40px;

    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

    text-align: center;

}

.button__container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 2rem;
    color: #666;

}

h2 {
    font-size: 22px;

}

.choice {

    width: 100%;
    
    border-radius: 13px;

    padding: 16px;

    margin-bottom: 2rem;

    font-size: 18px;

    cursor: pointer;

    border: none;

    border-radius: 11px;

    transition: .2s ease;
        background:#fff;
    border:1px solid #ddd;
    color:#333;

}


h2,
.choice{
        margin-bottom: 2rem;
}

.choice:hover {

    transform: translateY(-2px);
     /* border-color:#888; */
    background:#fafafa;

}

.good {
    border: solid 1px #82e386;
}

.okay {
    border : solid 1px #FFC107; 
}

.bad {
    border: solid 1px #F44336;
    /* color: white; */ 
}

.good:hover {
    background:  #f5fff5;
}

.okay:hover {
    background :  #fffbef;
}

.bad:hover {
    background:  #fff2f1;
    /* color: white; */
}

.primary {

    margin-top: 25px;

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 8px;

    background: #4CAF50;

    color: white;

    cursor: pointer;

    font-size: 17px;

}

textarea {

    width: 100%;

    height: 140px;

    margin-top: 20px;

    padding: 15px;

    resize: none;

    border-radius: 8px;

    border: 1px solid #ccc;

    font-size: 16px;

}