@font-face {
  font-family: "Gotham Black";
  src: url("fonts/Gotham Black Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 16px;
  background: #f4f4f4;
  font-family: "Playfair Display", serif;
  color: black;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3 {
  margin: 0;
}

/* Main Style */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 20px 0px;
  text-align: center;
}

.page-body {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-image: url("./assets/woops-bg-md.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 50vh;
}

.content h1 {
  font-family: "Gotham Black", sans-serif;
  /* font-size: 180px; */
  font-size: 80px;
  background: linear-gradient(to top, #64065f, #8c1054, #981154);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.content h3 {
  font-size: 16px;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
}

.content h3 a {
  background: linear-gradient(to top, #64065f, #8c1054, #981154);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-media p {
  font-size: 12px;
}

.social-media ul {
  margin-top: 25px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 25px;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 50px;
    text-align: left;
  }

  .content h1 {
    font-size: 120px;
    margin-bottom: 25px;
  }

  .content h3 {
    font-size: 24px;
  }

  .social-media p {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .content h1 {
    font-size: 180px;
    margin-bottom: 35px;
  }

  .content h3 {
    font-size: 28px;
  }
}
