main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    margin: 10px;
    font-weight: 500;
}

.question {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.result {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.speakQuestionButton {
    margin-bottom: 30px;
    border: 4px solid black;
    border-radius: 40px;
    display: block;
    width: fit-content;
    height: fit-content;

    font-size: 18px;
    padding: 20px 20px;

    background-color: white;
    color: #AF03FF;
}

.answerButton{
    margin: 0 50px;
    border: none;
    border-radius: 40px;
    display: block;
    width: fit-content;
    height: fit-content;

    font-size: 24px;
    font-weight: 500;
    padding: 20px 20px;
    background-color: #FFD503;
    color: black;
}

.nextButton {
    margin: 20px;
    border: none;
    border-radius: 40px;
    display: block;
    width: fit-content;
    height: fit-content;

    font-size: 16px;
    font-weight: 400;
    padding: 20px 20px;
    background-color: black;
    color: white;
}

a{
    margin-top: 80px;
}

p{
    position: fixed;
    right: 8px;
    bottom: 8px;
}