.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
}

.birthday-image {
    width: 400px; /* Adjust the width to make the image smaller */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image */
    margin: 0 auto 20px; /* Center horizontally and add space below */
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    background: conic-gradient(
        #fdffa6 0deg 10deg,
        #ffffff 10deg 30deg,
        #b8ccff 30deg 60deg,
        #65a7ff 60deg 80deg,
        #fdffa6 80deg 90deg,
        #ffdd86 90deg 100deg,
        #b8ccff 100deg 130deg,
        #fdffa6 130deg 140deg,
        #65a7ff 140deg 160deg,
        #ffffff 160deg 190deg,
        #fdffa6 190deg 200deg,
        #ffffff 200deg 220deg,
        #b8ccff 220deg 250deg,
        #ffdd86 250deg 260deg,
        #9fd7ff 260deg 280deg,
        #ffffff 280deg 290deg,
        #9fd7ff 290deg 310deg,
        #65a7ff 310deg 330deg,
        #ffffff 330deg 360deg
    );
}


.section-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 30 20;
    color: #3577cf;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%) rotate(calc(var(--rotate) - 90deg));
}

.pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #3577cf;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.spin-button {
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    background-color: #3577cf;
    color: white;
    letter-spacing: 2px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.spin-button:hover {
    background-color: #3578cf8d;
}

.spin-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.result {
    font-size: 24px;
    font-weight: bold;
    color: #3577cf;
    letter-spacing: 2px;
    font-family: 'Open Sans', sans-serif;
    min-height: 36px;
}

/* password stuff */
#password-screen {
    text-align: center;
    margin-top: 350px;
    font-family: 'Open Sans', sans-serif;
}

#password-screen h2 {
    font-size: 24px;
    color: #3577cf;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

#password-input {
    padding: 10px;
    font-size: 16px;
    border: 5px solid #3577cf;
    border-radius: 20px;
    width: 200px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

#submit-password {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3577cf;
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

#submit-password:hover {
    background-color: #3578cf8d;
}