body {
    background-image: url(../groovy_game/img/game_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 92vh;
}

nav ul {
  
    margin: 0;
    padding: 0;
    font-size: 15px;
    display: flex;
    flex-direction: column; 
}

nav ul li {
    display: block;
    margin-bottom: 10px; 
}

nav li a {
   
    font-size: 20px;
    margin: 0;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#projects .projects-bottom {
    flex-wrap: wrap;
    
    justify-content: center; 
    margin: 30px; 
   
}

#projects .projects-button {
    align-items: center;
    display: flex;
    padding: 15px; 
    position: relative;
    border-radius: 20px;
    background-color: #FFFAE7;
    border: #E7802C solid;
    border-width: 1.5px;
    flex-direction: column;
    text-decoration: none;
    margin: 6px;
    width: 30%; 
}

#projects .projects-button::after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
}

#projects .projects-button:hover {
    box-shadow: 0px 0px 5px 5px #f4bf97;
    transition: 0.2s ease-in-out;
}

#projects .projects-button h5 {
    color: #E7802C;
    font-size: 20px; 
    margin-top: 2px;
}

#projects .projects-button h5:hover {
    color: rgb(182, 52, 38);
    text-decoration: double;
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
   
}
