body {
    font-family: 'Inter', sans-serif;
    margin: 0px;
    height: 100svh;
    box-sizing: border-box;
}
.root {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-color: #F5F5F5;
    height: 100svh;
}
button {
    border: 2px solid #196CFF;
    border-radius: 4px;
    height: 40px;
    text-decoration: none;
    background-color: #196CFF;
    transition: 0.3s ease;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}
button:hover {
    /* background-color: rgb(20, 86, 204); */
    /* border-color: rgb(20, 86, 204); */
}
.start-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.longboi-image {
    width: auto;
    max-height: 50%;
    object-fit: contain;
}
.game {
    display: grid;
    grid-template-rows: 40% 60%;
    align-content: space-between;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}
.question-area {
    display: flex;
    width: 100%;
    height: auto;
}
.longboi-game-image {
    width: 50%;
    height: auto;
    max-height: 230px;
    object-fit: contain;
}
.shake {
    animation: shake 0.2s linear;
}
@keyframes shake {
/*  this animation should roatate by a few degrees in either way */
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.question {
    width: 50%;
    padding-top: 30px;
}
.progress-bar-outer { 
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background-color: gray;
}
.progress-bar-inner {
    height: 100%;
    border-radius: 8px;
    background-color: #196CFF;
    transition: 0.3s ease;
}
.buttons {
    margin-top: auto;
}
.question-button {
    background-color: white;
    border-color: #131111c9;
    color: #131111c9;
}
.longboi-image-result {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
}
.longboi-end-image {
    position: absolute;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    animation: spin 3s linear;
    opacity: 0;
}
.college-image-result {
    position: absolute;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    z-index: 2;
    animation: fade-in 3s ease;
}
/* create a spinning and growing animation for longboi end image */
@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0;
    }
}
/* now an animation to fade in the college image */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}