#typewrite {
    height: 100%;
    font-family: "Tiny5";
    font-size: 42px;
    color: white;

    text-align: center;

    margin-top: 1%;
    margin-bottom: 1%;
}

#buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.button {
    text-decoration: none;

    background-color: #4F6560;

    padding: 3%;
    padding-right: 6%;
    padding-left: 6%;

    border-radius: 20px;

    box-shadow: 2.5px 2.5px 0 2.5px rgba(0, 0, 0, 0.25);

    color: white;
    font-family: "Fredoka";
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 3px 0 black,
    -3px 0 black, 
    0 3px black, 
    0 -3px black,

    2px 2px black,
    -2px 2px black,
    -2px -2px black,
    2px -2px black;

    transition: background-color 1s;
}

.button:hover {
    background-color: rgb(88, 112, 105);
}

.button:active {
    transform: translateY(5px);
    transform: translateX(5px);
    box-shadow: none;
}

@media (width <= 980px) {
    #typewrite {
        font-size: 38px;
    }

    #buttons {
        justify-content: space-evenly;
    }

    .button {
        padding: 8%;
        padding-right: 16%;
        padding-left: 16%;
        font-size: 36px;
    }
}