html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

* {
    box-sizing: border-box;
    overflow: hidden;
}

button {
    all: unset;
    cursor: pointer;
}
/*colors: 
Black(1e1e1e)
Grey(2d2d2d)
*/

body {
    width: 100vw;
    height: 100vh;
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: #2d2d2d;
}
.mainSection {
    width: 100%;
    height: 95%;
}


main{
    width: 100%;
    height: 100%;
    background-color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
    
footer {
    width: 100%;
    height: 5%;
    display: flex;
    
    justify-content: center;
    align-items: center;
    background-color: inherit;
}
.mainBox {
    display: flex;
    background-color: #1e1e1e;
    border-radius: 5%;
}

#welcomeScreen {
    width: 50%;
    height: 50%;
    
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#welcomeScreen h1 {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    
}
#welcomeScreen div {
    
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#playButton {
    width: 70%;
    height: 30%;   
    border-radius: 5%;
    background-color: #d98b00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4em;
    font-weight: 900;
    transition: 100ms;
}

#playButton:hover {
    background-color: #2596be;
}

footer div {
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: inherit;
    border: 1px solid #2596be;
    transition: 300ms;
}
footer div img {
    width: 30px;
    height: 30px;
}
footer div:hover {
    width: 50px;
    
}


#canvasSection {

    width: 100%;
    height: 90%;
}
#gameSectionReturn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;

    width: 100%;
    height: 5%;
}

#gameInfo {
    width: 100%;
    height: 50%;
    display: flex;
   
    justify-content: center;
    align-items: center;
    color: white;
}


