.survey-container {
    max-width: 600px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#question-container {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.survey-buttons {
    margin-top: 50PX;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.perfume-btn {
    background: #5B455E;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 141, 101, 0.3);
    text-transform: uppercase;
}
.perfume-btn:hover {
    background-color: #e89f90;
    transform: translateY(-2px);
}

html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.page-wrapper::after {
    content: "";
    flex-grow: 1;
}

.margin{
    margin: 40px;
}