* {
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #ffaaaa25;
  backdrop-filter: blur(3px);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0 30px;
  height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo {
  color: #862323;
  font-size: 25px;
  font-weight: 800;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #862323;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  padding: 9px 15px;
  margin: 0 5px;
  transition: all 0.5s;
}

.nav-links:hover > li > a {
  color: #ec6f6fda;
}

.nav-links li a:hover {
  color: #862323;
}

.header {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url(Background.png);
  background-size: cover;
  background-position: bottom;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f7b2b2;
  position: absolute;
  top: 32%;
  left: 27%;
}
.header h1 {
  color: #862323;
  font-size: 120px;
  position: absolute;
  left: 7%;
  bottom: 35%;
  line-height: 110px;
  text-transform: uppercase;
  z-index: 1;
}

.btn {
  padding: 10px 24px;
  background-color: #862323;
  color: #fff;
  width: 60px;
  text-align: center;
  border-radius: 30px;
  position: absolute;
  bottom: 25%;
  left: 7%;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s, border 0.1s;
  border: 2px solid #f7b2b2;
}

.btn:hover {
  background-color: #f7b2b2;
  color: #862323;
  font-weight: 600;
  border: 2px solid #862323;
}
