body {
    height: 100vh;
    width: 100vw;
    background-color: black;    /* change */
}    

div.topleftcorner {     /* change */
    width: 12vw;
    height: 12vw;
    display: flex;
    justify-content: left;
    position: fixed;
    left:0;
    top: 0;
}

div.toprightcorner {   /* change */
    width: 12vw;
    height: 12vw;
    display: flex;
    justify-content: right;
    position: fixed;
    right: 0;
    top: 0;
}

div.bottomleftcorner {      /* change */
    width: 12vw;
    height: 12vw;
    display: flex;
    justify-content: left;
    position: fixed;
    left:0;
    bottom: 0;
}

div.bottomrightcorner { /* change */
    width: 12vw;
    height: 12vw;
    display: flex;
    justify-content: left;
    position: fixed;
    right:0;
    bottom: 0;
}

header {    
    display: flex;          
    justify-content: center;      
    align-items: center;
    gap: 5vw;
    height: 15vh;
    padding: 1vh 0;
}


button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: -2px -2px 0 #000, -2px -2px 0 #000, -2px -2px 0 #000, -2px -2px 0 #000;
    text-align: center;
    font-family: pixelFont;
    font-size: 1.5vw;
    width: 13vw;
    height: 8vh;
    letter-spacing: 0.5vw;
    box-shadow: 0px 5px rgb(172, 172, 172), 0px -5px rgb(172, 172, 172), 5px 0px rgb(172, 172, 172), -5px 0px rgb(172, 172, 172), 0px 5px #8d8a8a9f, 5px 0px #8d8a8a9f, -5px 0px #8d8a8a9f, inset 5px 5px 4px 1px #ffffff3f;
}

button:active {
     transform: translateY(5px);
     box-shadow: 0px 5px rgb(189, 185, 185), 0px -5px rgb(189, 185, 185), 5px 0px rgb(189, 185, 185), -5px 0px rgb(189, 185, 185), inset 0px 5px #00000038;
}



section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 85vh;
}

div.welcomeText {
    font-family: pixelFont;
    font-size: 7vw;
}
div.welcomeText p {
    margin: 0;
    text-align: center;
}
div.welcomeText img {
    width: 18vw;
    height: 12vw;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


@font-face{
    font-family: pixelFont; 
    src: url(arcadeclassic.ttf);
    font-weight: bold;
}