@font-face {
    font-family: 'GrowingFont.ttf';
    src: url(../fonte/GrowingFont.ttf);
}

h1 {
    font-family: 'GrowingFont.ttf';
}

p {
    font-family: 'GrowingFont.ttf';
}

h2 {
    font-family: 'GrowingFont.ttf';
}

h3 {
    font-family: 'GrowingFont.ttf';
}

li {
    font-family: 'GrowingFont.ttf';
}

span {
    font-family: 'GrowingFont.ttf';
}

.growingbutton-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 700px;
    margin: 0 auto;
}

.growingbutton {
    min-width: 100%;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    border-bottom: 6px solid #e5e5e5;
    margin: 10px;
    transition: all 0.1s;
    display: inline-flex;
    padding: 12px 16px;
}

.growingbutton:hover {
    background-color: #ddf4ff;
    border-color: #1cb0f6;
}

.growingbutton:active {
    border-bottom: 2px solid #1cb0f6;
}

.answer-number {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.answer-choice {
    width: 100%;
    text-align: center;
    font-size: 19px;
    color: #4b4b4b;
}