* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}
body {
  width: 100%;
  background: linear-gradient(135deg, #ff9a9e, #f6416c);
}
body::before,
body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 40%;
}
body::before {
  clip-path: circle(30% at left 20%);
  background: linear-gradient(135deg, #f6416c, #ff9a9e);
}
body::after {
  clip-path: circle(30% at right 80%);
  background: linear-gradient(135deg, #f6416c, #ff9a9e);
}
a {
  color: #000;
  text-decoration: none;
}
header {
  position: relative;
  width: min(100%, 800px);
  height: 500px;
  padding: 30px;
  margin: 60px auto;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
header nav .logo a {
  font-size: 20px;
  font-weight: 600;
}
header nav .menu ul {
  display: flex;
}
header nav .menu ul li {
  list-style: none;
  margin-right: 20px;
}
header nav .menu ul li a {
  transition: 0.3s;
}
header nav .menu ul li a:hover {
  color: white;
}
header nav .buttons input {
  background: linear-gradient(135deg, #ff9a9e, #f6416c);
  color: white;
  padding: 6px;
  margin-left: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s;
}
header nav .buttons input:hover {
  scale: 0.9;
}
header h1 {
  margin-bottom: 20px;
}
header p {
  font-size: 16px;
}
header .play-video {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 10px;
  margin-right: 10px;
}
header .play-video p {
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
header .play-video p::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  border-radius: 10px;
  background-color: #000;
  top: 50%;
  left: -80px;
  translate: 0 -50%;
}
@media (max-width: 850px) {
  header nav {
    flex-direction: column;
    align-items: center;
  }
  header nav .menu {
    margin: 10px 0;
  }
  header .text {
    width: 70%;
    margin: 30px 0 0 20px;
  }
}
@media (max-width: 500px) {
  header {
    height: 100vh;
    width: 100%;
    border: none;
    border-radius: 0;
    margin: 0;
  }
}