body{
    background-image: url(backgroundpic.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin: 60px 20px 20px 20px;

}

section {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/*------------------------------------------------- dropdown --------------------------------------------*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
  }
  
  .logo {
    font-size: 24px;
    color: white;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-right: 20px;
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
  }


  .navL:link {
    color: rgb(255, 255, 255);
  }
  
  .navL:visited {
    color: rgb(255, 255, 255);
  }
  
  .navL:hover {
    color: #d0d0d0;
  }
  
  .navL:active {
    color: rgb(81, 81, 81);
  }

  /*---------------------------- Media Queries -------------------------------*/
@media (max-width: 1300px) {


}
@media (max-width: 920px) {
 

    section {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    section img{
        height: 200px;
    }

    /*---------------------------------- dropdown -----------------------------*/

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        text-align: center;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a{
        font-size: 23px;
    }


    .burger {
        display: block;
    }

    .nav-active {
        display: flex;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    

}
@media (max-width: 768px) {


    section {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    section img{
        height: 200px;
    }

/*---------------------------------- dropdown -----------------------------*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.nav-links li {
    margin: 20px 0;
}

.nav-links li a{
    font-size: 23px;
}


.burger {
    display: block;
}

.nav-active {
    display: flex;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

}