html{
    margin: 0%;
    padding: 0%;
    overflow: hidden;
    color: #FCFBF4;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    margin: 0%;
    padding: 0%;
}
div{
    margin: 0%;
    padding: 0%;
}
#header{
    height: 10vh;
    width: 100vw;
    background-color:#0D1117;
    display: flex;
    justify-content: center;
    align-items: center; 
    box-shadow: 0px 5px 10px#0D1117;
    visibility: visible;
    position: relative;

}
#content{
    width: 100%;
    height: 100vh;
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 10vw;

}
#footer{
    height: 10vh;
    width: 100vw;
    background-color:#0D1117;
    display: flex;
    flex-direction: row;
    gap: 0.5vw;
    justify-content: center;
    align-items: center;
    box-shadow:#0D1117 0px -5px 10px;
    visibility: visible;
    position: relative;
}
#buttons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    width: 30vw;
}
button{
    background-color:#0D1117;
    color: #FCFBF4;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    width: 10vw;
    cursor: pointer;
    box-shadow: 0px 5px 10px#0D1117;
    transition: 150ms;
    height: 4vh;
    font-size: 0.8vw;
}
button:hover{
    background-color: #161b22;
    box-shadow: 0px 5px 10px#08090c;
    transform: scale(1.1); 
}
button:active{
    background-color: #161b22;
    box-shadow: 0px 5px 10px#161b22;
    transform: scale(1); 
}
#grid{
    width: 30vw;
    height: 30vw;
    background-color: black;
    display: flex; 
    flex-direction: column;
    cursor: crosshair; 
    pointer-events: all;
    user-select: none;
    -webkit-user-drag: none;
    
}

img{
    width: 2vw;
    height: 2vw;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
