* {
  box-sizing: border-box;
}
body {
  background: #fbb9de;
  background: linear-gradient(112deg, #fbb9de 0%, #8bf7f9 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}
.container {
  width: 80%;
  height: 70%;
  position: relative;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: inherit;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.container:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
  filter: blur(10px);
  margin: -20px;
}
nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  color: white;
  padding: 0;
}
nav ul li {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
nav ul li.active {
  background: #fc8828;
  padding: 3px 15px;
  border-radius: 8px;
}
.content {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}
.content img {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  animation: move 2s infinite alternate ease-in-out;
}
.content .social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  height: 100%;
  color: white;
}
.content .social-media svg {
  margin: 15px 30px;
}
.content-text {
  color: white;
  width: 100%;
  padding: 0 50px;
}
.content-text h1,
.content-text h3 {
  margin: 0;
}
.content-text h1 {
  font-size: 56px;
}
.content-text.right {
  text-align: right;
  margin-top: 170px;
}
.content-text.left {
  margin-top: -300px;
}
.pre-order {
  background: #F85A26;
  margin-left: auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 8px 0 0 0;
}
.pre-order svg {
  margin-right: 15px;
}
@keyframes move {
  from {
    transform: translate(-50%, -55%) rotate(-25deg);
  }
}