body {
    background-color: #290202; padding: 100px; background-repeat: no-repeat; background-size: cover; 
}
p{color: white;}

ul {
    display: flex;
}

li {
    width: 25%;
    list-style-type: none;
    text-align: center;
}
h2{
    color: white;
}
h1{color: white;}
a {
    display: block;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: white;
}

main {
    display: grid;
    font-size: 20px;
    line-height: 24px;
}


/* Medium size */
@media screen and (min-width:600px) and (max-width:1199px) {
    body {
        background-color: #290202; padding: 100px; background-repeat: no-repeat; background-size: cover; 
    }

    main {
        display: grid;

        font-size: 16px;
        line-height: 20px;
    }
}

/* Small screen */
@media screen and (max-width:599px) {
    body{
        background-color: #290202; padding: 100px; background-repeat: no-repeat; background-size: cover; 
    }

    .logo {
        display: none;
    }
    .zombie{display: none;}

    ul{
        flex-direction: column;
    }
    
    li {
        width: 100%;
    }

    main {
        display: flex;
        flex-direction: column;
        font-size: 16px;
    }
}

.logo{
    height: 100px;
 
}
.zombie{
    height: 200px;
}

.grid-container {
  display: grid;
  grid-template-columns:
   
    'auto auto auto auto';

  gap: 10px;
  background-color: rgba(0, 0, 0, 0.668);
  padding: 10px;
}



.grid-item{
    text-align: center;
    padding:20px ;
    font-size: 20px;
    background-color: rgba(87, 5, 5, 0.7);
}
nav ul li{
    margin-right:350px;
    justify-content: space-around;
}
nav ul{
    display:flex;
    list-style-type: none;
}