* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: #e2e2e2;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 10px #2e2e2e;
    height: 650px;
    width: 1000px;
    position: relative;
    border-radius: 30px;
}

.question-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.question-text-container {
    position: absolute;
    top: 30px;
}

.question-text {
    font-size: 25px;
    text-align: center;
}

.question-options-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 80px;
}

.question-option {
    text-align: center;
    padding-bottom: 10px;
    border-radius: 100%;
    transition: 0.2s ease;
    padding: 15px;
    color: white;
}

.question-option:hover {
    background-color: #c0c0c0;
}

.question-option-icon {
    height: 150px;
}

.question-option-text {
    font-weight: bold;
    color: #4e4e4e;
    transition: 0.2s ease;
}

.question-btn-container {
    position: absolute;
    bottom: 120px;
}

.question-btn {
    height: 70px;
    width: 300px;
    border-radius: 100px;
    border: 2px solid #db796e;
    background-color: salmon;
    font-size: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.question-btn:hover {
    background-color: #df786d;
}

.feedback-container {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.feedback-heart {
    font-size: 80px;
    color: #d42020;
}

.feedback-thick-text {
    font-size: 30px;
    font-weight: bold;
}

.feedback-thin-text {
    font-size: 22px;
    color: gray;
}