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

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Inter", serif, sans-serif;
  overflow-x: hidden;

  background-color: black;
 
}
.container {
  width: 100%;
  min-height: 100%;
  padding: 32px;
  background-color: white;
  transition:  linear .6s;
  transform-origin: top  left ;

}
.container.open-nav{
  transform: rotate(-20deg);
}
.circle {
  width: 200px;
  height: 200px;
  background-color: orangered;
  border-radius: 50%;
  position: fixed;
  top:-100px;
  left:-100px;
  transition: all ease .5s;
}
.open-nav .circle{
  transform: rotate(-70deg);
  transform-origin: center;
}
button.open{
  width: 50px;
  height: 50px;
  font-size: 32px;
  background-color: transparent;
  border: none;
  color: white;
  position: absolute;
  top: 58%;
  left: 58%;
  cursor: pointer;
}
button.close{
  width: 50px;
  height: 50px;
  font-size: 28px;
  background-color: transparent;
  border: none;
  color: white;
  position: absolute;
  top: 58%;
  right: 58%;
  cursor: pointer;
}

.content {
  max-width: 1000px;
  min-height: 100vh;
  margin: 80px auto;
  line-height: 1.8em;
  background-color: white;
  
}
img {
  width: 100%;
}
.nav-bar{
  position: fixed;
  left:40px;
  bottom: 30px;
}
.nav-bar ul{
  list-style-type: none;
  padding: 12px;

}
.nav-bar li{
  font-size: 18px;
  margin: 24px 0;
  color: white;
  cursor: pointer;
  transform: translate(-120%);
  opacity: 0;
  transition: all ease 0.5s;

}
.nav-bar.open li{
  transform: translate(0%);
  opacity: 1;
}
.nav-bar li + li{
  margin-left: 20px;
}
.nav-bar li + li + li{
  margin-left: 40px;
}
.nav-bar li>i{
  margin-right: 15px;
}