body {
    padding: 0;
    margin: 0;
  }
  .container {
    position: relative;
    margin-top: 100px;
  }
  .container img {
    display: block;
    width: 100%;
  }
  nav {
    position: sticky;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: "Montserrat", sans-serif;
    padding: 0 5%;
    height: 70px;
    background-color:#000000;

    /* position: relative; */
   
  }
  nav .logo {
    float: left;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #000000;
  }
  nav .logo img{
    width: 150px;
  }
  nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  nav .links li {
    list-style: none;
  }
  nav .links a {
    display: block;
    padding: .5em;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
  }
  nav .links a:hover{
    color: rgb(255, 254, 254);
    border: 2px solid rgb(198, 198, 198);
    border-radius: 10px;
    letter-spacing: 2px;
    transition: 600ms;
    /* outline: none; */
   /* animation: alternate-reverse;
   animation-duration: 5sec; */
  }
  #nav-toggle {
    position: absolute;
    top: -100px;
  }
  nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #ffffff;
    margin: 5px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }
  @media screen and (max-width: 768px) {
    nav .logo {
      float: none;
      width: auto;
      justify-content: center;
    }
    nav .links {
      float: none;
      position: fixed;
      z-index: 9;
      left: 0;
      right: 0;
      top: 71px;
      bottom: 100%;
      width: auto;
      height: auto;
      flex-direction: column;
      justify-content: space-evenly;
      background-color:  #090909;
      opacity: 70%;
      overflow: hidden;
      box-sizing: border-box;
      transition: all 0.5s ease-in-out;
    }
    nav .links a {
      font-size: 20px;
      color: white;
    }
    nav :checked ~ .links {
      bottom: 0;
    }
    nav .icon-burger {
      display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
      transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
      transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
      opacity: 0;
    }
  }
  
  .youtube-link {
    position: fixed;
    left: 20px;
    bottom: 20px;
    color: #fffafa;
    text-decoration: none;
    font-size: 12px;
  }
  