@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  list-style: none;
  text-decoration: none;
}
.header {
  width: 100%;
  height: 100vh;
  background: #020412;
  color: white;
  padding: 2% 15%;
  position: relative;
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
nav ul {
  display: flex;
  gap: 5em;
}
nav ul li a {
  color: white;
  font-weight: 500;
  opacity: 0.7;
  transition: 0.3s ease;
}
nav ul li a:hover {
  opacity: 1;
}
.logo {
  width: 100px;
  cursor: pointer;
  color: white;
  font-weight: 700;
  font-size: 36px;
}
.menu-icon {
  font-size: 32px;
  opacity: 0.7;
  cursor: pointer; 
  transition: 0.3s ease;
}
.menu-icon:hover {
  opacity: 1;
}
.logo span {
  color: #f12c2c;
}
.text-box {
  margin-top: 15%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 25px;
  width: 750px;
}
.text-box h1 {
  font-size: 70px;
  line-height: 160px;
}
.text-box a {
  margin-top: 30px;
  margin-left: 5px;
  display: inline-block;
  border-radius: 1em;
  border: 2px solid #f12c2c;
  color: #f12c2c;
  padding: 15px;
  transition: 0.3s ease;
}
.text-box a:hover {
  background: #f12c2c;
  color: white;
  transform: scale(1.05);
}
.text-box span {
  color: #f12c2c;
}
.user-img .blob {
  width: 700px;
  position: absolute;
  right: 6%;
  top: 10%;
}
.user-img .image {
  width: 500px;
  position: absolute;
  right: 11%;
  top: 15%;
  z-index: 1;
}
