* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Karla', sans-serif;
    color: #293264;
    overflow:hidden;
    margin: 0;
}

#root {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
}

.app {
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.app::-webkit-scrollbar {
    display: none;  /* Chrome */
  }

.modal--start {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-content: center;
    height: 100%;
    width: 100%;
}

.title---quizzical {
    font-size: 3rem;
}

.blob--yellow {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    z-index: -1;
}

.blob--blue {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-40%, 40%); 
    z-index: -1; 
}

.app {
    display: grid;
    place-items: center;
}

.questions--container {
    justify-items: left;
}

.quiz--container {
    border-bottom: 2px solid #DBDEF0;
    margin-bottom: 2rem;
    min-height: 100px;
}

.quiz--question {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.quiz--alternatives {
    display: flex;
    padding: 1.25rem 0;
    user-select: none;
}

.quiz--each--question {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    min-width: 6rem;
    border: 1px solid #293264;
    border-radius: 11px;
    padding: 4px 16px;
    margin-right: 1.25rem;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.answer--score {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn {
    border: none;
    font-size: 1rem;
    font-family: Inter, sans-serif;
    font-weight: 400;
    color: white;
    border-radius: 11px;
    padding: 12px 24px;
    background: #4D5B9E;
    cursor: pointer;
}


.modal--btn {
    font-size: 2rem;
}