@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: #FFFFFF; background-image: linear-gradient(180deg, #FFFFFF 0%, #6284FF 50%, #FF0000 100%);
    color: #222;
    overflow-x: hidden;
    margin: 0;
  }
  
  .container {
    background-color: #060505;
    color: #fff;
    transform-origin: top left;
    transition: transform 0.5s linear;
    width: 100vw;
    min-height: 100vh;
    padding: 50px;
  }
  
  .container.show-nav {
    transform: rotate(-20deg);
  }
  
  .circle-container {
    position: fixed;
    top: -100px;
    left: -100px;
  }
  
  .circle {
    background-color: #FF0000;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.5s linear;
  }
  

.circle button {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100px;
    background: transparent;
    border: 0;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.circle button:focus {
    outline: none;
}

.circle button#open {
    left: 60%;
}

.circle button#close {
    top: 60%;
    transform: rotate(90deg);
    transform-origin: top left;
}

.content img {
    max-width: 100%;
  }
  
  .content {
    max-width: 1000px;
    margin: 50px auto;
  }
  
  .content h1 {
    margin: 0;
  }
  
  .content small {
    color: #555;
    font-style: italic;
  }
  
  .content p {
    color: #e1e1e1;
    line-height: 1.5;
  }

  .container.show-nav .circle {
    transform: rotate(-70deg);
  }
  .container.show-nav + nav li {
    transform: translateX(0);
    transition-delay: 0.3s;
  }

  nav {
      position: fixed;
      bottom: 40px;
      left: 0;
      z-index: 100;
  }

  nav ul {
      list-style-type: none;
      padding-left: 40px;
  }

  nav ul li {
      text-transform: uppercase;
      color: #fff;
      margin: 40px;
      transform: translateX(-105%);
      transition: transform 0.5s ease-in-out;
  }

  nav ul li + li {
    font-size: 20px;
    margin-left: 50px;
    transform: translateX(-150%);
  }

  nav ul li + li + li {
    transform: translateX(-200%);
    margin-left: 70px;

  }
  .fa-diki {
    transform: translateX(-18%);
    margin-right:10px;

  }

  .fas {
    padding: 8px;
  }

.arrow {
  transform: translateY(-10%) translateX(-40%) rotate(-145deg);
  height: 20%;
  width: 20%;
  
}

h1 {
  color: #FF0000;

}