*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: 0;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: darkgreen;
    font-family: 'Amatic SC', cursive;
}
.logo{
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 50px;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
}
.nav-links Li{
    list-style: none;
}
.nav-links a{
    color: aliceblue;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}
.borgor{
    display: none;
}

.borgor div{
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.5s ease-in;
}
@media screen and (max-width:1024px)  {
    .nav-links{
        width: 60%;
    }

}
@media screen and (max-width:768px)  {
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: darkgreen;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30%;
        transform: translate(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
    .borgor{
        display: block;
    }

}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
.background-image{
    background-image: url("images/TqQHFh.png");
    background-color: dimgrey;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

}
.banner{
    border-radius: 10px;
}


.center-intro{
    background-color: black;
    color: darkgreen;
    padding: 1em;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    width: 955px;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.center-features{
    background-color: black;
    color: darkgreen;
    padding: 1em;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    width: 955px;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.minimum-requirements{
     background-color: black;
     color: darkgreen;
     padding: 1em;
     border-radius: 10px;
     border: 2px solid transparent;
     outline: none;
     font-family: sans-serif;
     font-weight: 500;
     font-size: 16px;
     line-height: 1.4;
     width: 955px;
     transition: all 0.2s;
    margin-bottom: 10px;
 }
.Recommended-requirements{
      background-color: black;
      color: darkgreen;
      padding: 1em;
      border-radius: 10px;
      border: 2px solid transparent;
      outline: none;
      font-family: sans-serif;
      font-weight: 500;
      font-size: 16px;
      line-height: 1.4;
      width: 955px;
      transition: all 0.2s;
      margin-bottom: 10px;
  }
.title1{
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: black;
    color: lawngreen;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;

    transition: all 0.2s;
}
.title2{
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: black;
    color: lawngreen;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;

    transition: all 0.2s;
}
.title3{
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: black;
    color: lawngreen;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;

    transition: all 0.2s;
}
.title4{
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: black;
    color: lawngreen;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;

    transition: all 0.2s;
}