@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fascinate&family=Open+Sans&display=swap');

body {
    background-color: rgb(31, 31, 31);
    color: rgb(31, 31, 31);
    font-family: 'Open Sans', sans-serif;
}


h2 {
    font-family: 'Fascinate', cursive!important;
}

h2, img {
    width: 50px; 
    display: inline;
    margin-top: -10px;
}

.container-1 {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  rgb(33, 32, 32);
    z-index: 1;
    display: grid;
    grid-template-areas: 'item-1 item-1 item-2';
    
}

.item-1 {
    grid-area: item-1;
    background-image: url("bilder/snake_big_inverted.jpg");
    background-size: cover;
    background-position: right;
    
}
.item-2 {
    grid-area: item-2;
}

#mainBody {
    text-align: center;
    position: relative;
    top: 20%;
    z-index: 2;
}

#canvas1 {
    background-color: rgba(0, 0, 0, 0.466);
    margin-top: 150px;
    border: 3px solid white;
    border-radius: 5px;
}

#message {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 100;
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

.button {
    cursor: pointer;
    width: fit-content;
    display: inline;
}

#rightPanel {
    position: absolute;
    right: 10%;
    top: 20%;
    z-index: 100;
}

#menu {
    margin-top: 100px;
}

header a {
    text-decoration: none!important;
    margin-right: 20px;
    color: black;
}
.button:hover {
    color: rgb(255, 199, 125)!important;
}
