@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Handjet', cursive;
}

body{
    background-color: rgb(76, 112, 230);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: auto;
}

.screen {
    display: grid;
    height: 500px;
    width: 500px;
    background-color: rgb(39, 10, 121);
    grid-template: repeat(30, 1fr) / repeat(30, 1fr);
    justify-items: center;
    align-items: center;
    border: 2px solid white;
}

.Snake {
    background-color: blue;
    height: 100%;
    width: 100%;
}

.food {
    background-color: red;
    height: 50%;
    width: 50%;
}

.score {
    font-size: 25px;
}