* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background-image: url(img/background.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.content {
  width: 88%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.content .logo {
  width: 100px;
  margin-top: 50px;
}

.content hr {
  border: none;
  height: 6px;
  max-width: 280px;
  margin-top: 8px;
  background: #ffa1a1;
}

.content h1 {
  font-size: 200px;
  font-weight: 100;
  color: #cfcfcf;
  letter-spacing: 4px;
  margin-top: 60px;
  margin-bottom: 30px;
  line-height: 160px;
}

.content p {
  max-width: 450px;
  color: #919191;
  letter-spacing: 1px;
  line-height: 20px;
  font-size: 14px;
}

.content .btn {
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 1px;
  padding: 18px 34px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 50px;
}

.content .btn:hover {
  background: #ffa1a1;
  border-color: #ffa1a1;
  color: #000;
  transition: 0.5s ease-out;
}

.btn2 {
  float: right;
}

.sidebar {
  width: 30%;
  max-width: 550px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.menu {
  width: 80px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
