html,
body {
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
    padding-bottom: env(safe-area-inset-bottom);
    font-family: 'GIP', sans-serif;
}

#chartdiv {
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 10%;
}

#question {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 15%;
    align-items: center;
}

#question p {
    text-align: center;
    max-width: 60%;
    font-size: 30px;
    font-weight: 700;
}

.button-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
}

.btn {
    border: none;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    border-radius: 30px;
    padding: 18px 100px 18px 40px;
    background: #626DB7;
    text-align: center;

}

.btn-blu1:hover {
    background: #4b5ab6;
    cursor: pointer;
}

.btn:disabled {
    background: #E0E0E0;
    cursor: not-allowed;
}

.btn:active {
    top: 2px;
}

.btn-right::after {
    content: url("https://alifna.azurewebsites.net/client_docs/arrow.svg");
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 60px;
    line-height: 4;
}

@font-face {
    font-family: 'GIP';
    src: url('/src/Gilroy/GIP-Black.otf') format('otf'),
        url('/src/Gilroy/GIP-ExtraBold.otf') format('otf');
    font-weight: bolder;
    font-style: normal;
}


@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}

.container {
    width: 100vw;
    height: 100vh;
    background: #f0f0f0;
}

.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
}

.confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
}

.confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
}

.confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
}

.hidden {
    display: none;
}

/* Centered text styles */
#centerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-weight: bold;
    color: #333;
    text-align: center;
  }