#intro-buddy-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#intro-buddy {
    width: 256px;
    aspect-ratio: 1/1;
    max-width: 100%;
}

#intro-textbox {
    width: 100%;
    min-height: 256px;
    color: white;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
    
}

#intro-textbox::after {
    content: " _";
    animation: blink 1s infinite;
}

.answers {
    width: 100%;
    display: none;
    gap: 16px;
}

.answers.show {
    display: flex;
}

.answers button {
    width: 100%;
    height: fit-content;
    color: white;
    border: solid 1px white;
    background-color: black;
    border-radius: 8px;
    font-size: 22px;
}