
* {
    margin: 0;
    padding: 0;
    font-family: 'Architects Daughter', cursive;
}

body {
    background-image: url(../Media/snake_background.jpg);
}

#playspace {
    height: 80vh;
    aspect-ratio: 1/1;
    image-rendering: pixelated;
    background-color: black;
}



#snakewindow {
    width: 80vh;
    height: 86vh;

    background-color: rgb(131, 111, 44);
    outline-style: solid;
    outline-color: rgb(233, 191, 114);
    outline-width: 10px;
    border-radius:1rem;
    
}

#snakewindow div{
    display: flex;
    background-color: rgb(238, 211, 153);
    height: 6vh;
    align-items: center;
    justify-content:space-between;
    padding-left: 100px;
    padding-right:100px;
    
}

#snakewindow span {
    background-color: black;
    width: fit-content;
    color: white;
    padding:10px;
    border-radius: 10px;
}

.wrapper {
    margin-top: 5vh;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

