body {
    margin: 0;
    height: 30vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: black;
    color: red;

    font-family: 'Fontdiner Swanky', sans-serif;
}

.container {
    text-align: center;

    /* MOBILE */
    padding: 20px;
}

.buttons {
    margin-top: 20px;

    /* MOBILE */
    display: flex;
    flex-warp: warp;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;

    text-decoration: none;
    color: red;
    transition: background-color 0.3s;

    /* MOBILE */
    border: 1px solid red;
    border-radius: 5px;
}

.button:hover {
    background-color: rgba(255, 0, 0, 0.3);
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        height: auto;
        padding: 20px;
    }

    .container {
        padding: 10px;
    }

    .button {
        width: 100%;
        margin: 5px 0;
    }
}
