* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.jersey-10-regular {
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
}


body {
    /*background-image: url(web3/menu_pics/room.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;*/
   background-color: rgb(159, 151, 114);
    font-family: 'Courier New', Courier, monospace;
    color: rgb(215, 214, 214);
    text-shadow: 0px 0px 5px rgb(57, 63, 59);
    text-align: center;
    margin-top: 5rem;
    animation: fade-in 1s ease-in-out, float 2s infinite ease-in-out;
    font-family: "Jersey 10",
        sans-serif;
}

article {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
    margin: 5rem;
    margin-top: 3rem;
}

button {
    height: 5rem;
    width: 100%;
    border-radius: 10rem;
    border-style: none;
    box-shadow: 0px 7px 3px rgb(84, 81, 75) ;
    background-color: rgba(50, 48, 25, 0.5);
    color: rgb(255, 255, 255);
    transition: .2s;
}

button:hover {
    background-color: rgba(106, 197, 68, 0.5);
    transform: scale(107%);
}

@keyframes fade-in {

    0% {
        transform: translateY(90%);
        opacity: 0%;
    }

    20% {
        transform: translateY(25%);
        opacity: 10%;
    }

    100% {
        transform: translateY(0%);
        opacity: 100%;
    }
}

