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

body {
    background: #ff6c00ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

main {
    width: auto;
    height: 100%;
}

.click-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#arcade-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    border-radius: 60px;
    background: black;
    color: white;
    border: none;
    padding: 5px;
    font-size: 4rem;
    height: 250px;
    width: 250px;
    box-shadow: 0 2px 4px black;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#arcade-button:active {
    background: grey;
    box-shadow: 0 0 2px black;
    transform: translateY(2px);
}
  
#arcade-button:not(:first-child) {
    margin-top: 10px;
}

.dmlogo {
    position: absolute;
    top: 10%;
    width: 60%;
    left: 50%;
    transform: translate(-50%)
}

.dmfooter {
    position: absolute;
    bottom: 10%;
    width: 70%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    font-size: 0.8rem;
    color: #1e1e1e;
}