@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

@font-face {
  font-family: Dream Avenue;
  src: url(Font/Dream\ Avenue.ttf);
}
* {
  margin: 0;
  padding: 0;
  font-family: Poppins;
}

body {
  background-color: #fffef8;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: right;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #242424;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 9px 15px;
  transition: all 0.3s;
}

.nav-links li a:hover {
  color: #575757;
}
header {
  height: 100vh;
  width: 100%;
}

.img-box {
  width: 600px;
  height: 100vh;
  background-image: url(Image1.jpg);
  background-size: cover;
}

.content {
  position: absolute;
  right: 10%;
  top: 25%;
  color: #242424;
  width: 600px;
  overflow: hidden;
}

.content h1 {
  font-size: 7rem;
  letter-spacing: 1px;
  line-height: 6rem;
  font-family: "Dream Avenue";
}

.content p {
  margin-top: 20px;
}
.content a {
  text-align: center;
  text-decoration: none;
  color: #242424;
}

.button {
  padding: 10px 8px;
  width: 200px;
  margin: 30px 0;
  border-radius: 30px;
  border: 2px solid #242424;
  transition: all 0.2s;
}

.button:hover {
  background-color: #242424;
  color: #fff;
}

.cursor {
  position: fixed;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.1s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 2px solid;
}
