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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #333;
  color: #222;
  overflow-x: hidden;
  margin: 0;
}

.logo-mini {
  height: 60px;
  width: 60px;
  vertical-align: middle;
  margin-right: 10px;
}

.container {
  background-color: #fafafa;
  transform-origin: top left;
  transition: transform 0.5s linear;
  width: 100vw;
  min-height: 100vh;
  padding: 20px 50px;
}

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

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

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

.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: #fff;
}

.circle button:focus {
  outline: none;
}

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

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

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

nav ul {
  list-style-type: none;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

nav ul li {
  text-transform: uppercase;
  color: gray;
  margin-left: 20px;
}

nav ul li.current, nav ul li.current a {
  color: #333;
  font-weight: bold;
}

nav ul li.order-btn, nav ul li.order-btn a {
  color: green;
}

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

nav a {
  color: gray;
  text-decoration: none;
  transition: all 0.5s;
}

nav a:hover {
  color: #333;
}

.content img {
  max-width: 100%;
}

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

.content h1 {
  margin: 0;
}

.content small {
  color: #555;
  font-style: italic;
}

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

.profile-container {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.profile-pic {
  height: 200px;
  width: 200px;
}
.profile-desc {
  padding: 0 20px;
}
@media only screen and (max-width: 900px) {
  .container {
    padding: 20px;
  }
  nav ul {
    justify-content: start;
    padding-left: 0;
  }
  nav ul li {
    margin-right: 20px;
    margin-left: 0;
  }
  .profile-container {
    flex-direction: column;
  }
  .profile-desc {
    margin-top: 20px;
    padding: 0;
  }
}
