*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pixelify Sans", sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('https://btlsharf.github.io//Browser-Based-Snake-Game-Project/resources/background-wide.jpeg');
}

.wrapper{
    width: 65vmin;
    height: 70vmin;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    background: #446228;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(52, 87, 220, 0.2);
}

.game-details{
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 20px 27px;
    display: flex;
    justify-content: space-between;
}

.play-board{
    height: 100%;
    width: 100%;
    display: grid;
    background: #8dac5e;
    grid-template: repeat(30, 1fr) / repeat(30, 1fr);
}

.play-board .food{
    background: #f1f442;
}

.play-board .head{
    background: #501f78;
}

.controls{
    display: none;
    justify-content: space-between;
}

.logo {
    width:200px;
    margin: 20px;
}

#instructions {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin: 40px;
    padding: 10px;
    width: 50vmin;
    font-size: 1.2rem;
    text-align: center;
}

#logo-div {
    margin: 30px;
    width: 50vmin;
    display: flex;
    justify-content: center;
}

.arrows {
    width: 50vmin;
    justify-content: center;
}

.ar2, .ar1 {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.ar1 div, .ar2 div {
    border-radius: 5px;
    background-color: #446228;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-right: 15px;
}

.arrow-img {
    width: 60px;
    height: 60px;
}
#instructions-buttons {
    margin-bottom: 30px;
}