.body {
    background: linear-gradient(#fce4b5, #ffe74a) fixed;
}

.buttonList {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.button {
    border: 3px solid #021C79FF;
    color: #021C79FF;
    font-size: 30px;
    min-width: 15%;
    cursor: pointer;
    margin: 20px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background-color: rgba(0, 0, 0, 0.07);
}


@media (max-width: 750px) {
    .buttonList {
        display: block;
    }

    .button {
        max-width: 100vw;
    }
}