* {
    font-size: 20px;
}
html {
    height: 100%;
}
body {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 85px);
    margin: 40px;
}

.title {
    font-size: 26px;
    font-weight: bold;
}

button {
    background: linear-gradient(90deg, #FFE709, #FFD843);
    border: none;
    border-radius: 6px;
    height: 48px;
    cursor: pointer;
}

.btn-box {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-box button {
    width: 100%;
}

.content {
    text-align: center;
}