@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Potta+One:wght@400;700&display=swap");

html {
    font-family: "Baloo Bhaijaan 2", "Potta One";
    background-color: #e8e1d9ff;
    scroll-behavior: smooth;
    color: #E9E1D8, #994930, #B88672, #829080, #385045;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

header {
    background-color: #829080;
    padding: 20px 0;
    width: 100vw;
    position: relative;
    left: 0;
    right: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #E9E1D8;
}

.carousel {
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    animation: moveStars 4s linear infinite;
}

.stars span {
    margin: 0 5px;
    font-size: 60px;
    color: #E9E1D8;
}


.monkey {
    position: absolute; 
    top: 146px;
    left: 50%; 
    transform: translateX(-50%);
    width: 150px; 
    cursor: pointer; 
    transition: transform 0.3s;
    z-index: 2;
}
#monkey {
    width: 100%;
    cursor: pointer;
}


#main-box {
    background-color: #E9E1D8;
    margin: 30px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #859082ff, 15px 15px 30px #859082ff;
    margin-top: 100px; 
    z-index: 1;
    border: 5px solid #385045;
}


#survey {
    margin-top: 20px;
}

.survey-title {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -20px;
    font-size: 55px;
    font-family: "Potta One";
    color:#994930;
    position: relative;
}

.survey-title .see {
    color: #859082ff;
}

.survey-title.name {
    color: #994930;
}

#survey-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #385045;
    font-weight: bold;
}

input[type="radio"] {
    margin: 0 5px;
}

button[type="submit"] {
    background-color: #B88672;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Baloo Bhaijaan 2", sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #829080;
    color: #E9E1D8;
    transform: scale(1.05);
}

@keyframes moveStars {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}