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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #0a0a0c;
  color: #e1e1e6;
  overflow-x: hidden;
  margin: 0;
}

.container {
  background-color: #1a1a24;
  transform-origin: top left;
  transition: transform 0.5s linear;
  width: 100vw;
  min-height: 100vh;
  padding: 50px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

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

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

.circle {
  background-color: #ffbf00;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.5s linear;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
}

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

.circle button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle button:focus {
  outline: none;
}

#open {
  left: 60%;
  top: 55%;
}

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

.content {
  max-width: 800px;
  margin: 50px auto;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: #ffffff;
  letter-spacing: -1px;
}

.content small {
  color: #ffbf00;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content p {
  color: #a0a0a5;
  line-height: 1.8;
  margin: 30px 0;
  font-size: 1.1rem;
}

.content h3 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #ffffff;
}

.content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

nav {
  position: fixed;
  bottom: 60px;
  left: 0;
  z-index: 5;
}

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

nav ul li {
  text-transform: uppercase;
  color: #ffffff;
  margin: 30px 0;
  transform: translateX(-150%);
  transition: transform 0.4s ease-in;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

nav ul li a:hover {
  color: #ffbf00;
  transform: translateX(5px);
}

.container.show-nav + nav li {
  transform: translateX(0);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container.show-nav + nav li:nth-of-type(1) {
  transition-delay: 0.1s;
}

.container.show-nav + nav li:nth-of-type(2) {
  transition-delay: 0.2s;
}

.container.show-nav + nav li:nth-of-type(3) {
  transition-delay: 0.3s;
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2.2rem;
  }
}