@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
  background-color: #333;
  color: #222;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  background-color: rgb(34, 34, 34);
  transform-origin: top left;
  transition: transform linear 0.5s;
  width: 100vw;
  min-height: 100vh;
  padding: 50px;
}

.container.show-nav {
  transform: rotate(-20deg);
  position: fixed;
}

.circle-container {
  position: fixed;
  top: -100px;
  left: -100px;
}

.circle {
  background-color: black;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  transition: transform linear 0.5s;
}

.container.show-nav .circle {
  transform: rotate(-70deg);
  overflow: hidden;
}

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

.circle button:focus {
  outline-style: none;
}

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

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

.content img {
  width: 100%;
}

.content {
  max-width: 1000px;
  margin: 50px auto;
  color: white;
}

.content h1 {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.content h3 {
  font-family: serif;
  font-weight: 200;
  font-size: 1.5em;
}

.content small {
  color: crimson;
  font-weight: 500;
  font-style: italic;
}

.content p {
  color: #a1a1a1;
  line-height: 1.5;
}

.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: 30px;
}

nav ul li {
  text-transform: uppercase;
  color: black;
  margin: 40px 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in;
}

nav ul li + li {
  margin-left: 15px;
  transform: translateX(-150%);
}

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

nav ul li i {
  font-size: 20px;
  margin-right: 10px;
}

nav ul li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
}
