
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@1,600&display=swap');

#body {
    box-sizing: border-box;
    background-color: #E7E5DF;
    color: #9E968D;
    font-family: sans-serif
}

.logobanner {
    width: 6rem;
    height: 6rem;
}

.logobanner:hover > .logoben * {
    fill:#00B9E3;
    color:#00B9E3;
}

.nav-hover:hover{
    fill:#00B9E3;
    color:#00B9E3;
}





@media screen and (min-width: 1024px) {
    .menu {
        padding-left: 15%;
        padding-right: 15%;
    }
    .hero-message{
        padding-top: 3em ;
    }
    .hero-image {
        width: 100%;
        height: 800px;
        background-image: url(outline.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .text-half {
        width: 50%;
    }
}

@media screen and (min-width: 600px) {
    .p-frame-altbutton {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .text-half {
        width: 100%;
    }
    .p-frame {
        display: none;
    }
    
    .p-frame-altbutton {
        display: block;
    }
    
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 6rem;
}

.nav-element {
    display: inline;
    flex-flow: row;
    align-content: space-between;
    margin: 0;
   
}

.nav-linkbar {
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 8px;
    color: #2D2A26;
    text-decoration: none;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 17% ;
    padding-right: 13%;
}

.hero-message {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5em;
    color: black;
}


.text-half {
    height: 800px;
}

.action-button {
    padding: 12px;
    background-color:hsl(191, 100%, 45%);
    color:white;
    border-radius: 8px;
    text-decoration: none;
}

.action-button:hover {
    background-color: hsl(191, 100%, 65%);
}

.p-frame {
    width: 100%;
    height: 900px;
    margin: 0;
    border: 0;
    border-radius: 8px;
}


#snake-root{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.snake-button-disabled {
    background-color: gray !important;
}

.snake-line {
    display: block;
}

.snake-box{
   display: inline; 
}

#snake-score-line {
    font-size: x-large;
    font-family: 'Bebas Neue', cursive;
}

#snake-game-over {
    color: red;
}

@media screen and (max-width: 600px) {
    #snake-root {
        display: none;
    }
}

@media screen and (min-width: 600px) {
    #snake-mobile {
        display: none;
    }
}