@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&family=Dela+Gothic+One&family=Josefin+Sans:wght@500&family=Jost:wght@500&family=Orbitron:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Blurred Background */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstore-images.s-microsoft.com%2Fimage%2Fapps.60323.14294656681058683.4d17bdd8-7026-429a-846f-cf7836bc9e56.a69e6905-8926-4a48-b243-14a039b97aae%3Fmode%3Dscale%26q%3D90%26h%3D1080%26w%3D1920%26format%3Djpg&f=1&nofb=1&ipt=7a5f5d69a2e2ac2f725ee2edcd283700e3c7bcffba3fd9e63b53002eccef3160&ipo=images")
    no-repeat center center fixed;
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
}

.container {
  text-align: center;
}

.title {
  font-size: 5vw; /* Responsive font size based on viewport width */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 3vw;
  font-weight: lighter;
  margin-bottom: 40px;
  letter-spacing: 5px;
}

.cta-button {
  font-size: 16px;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}
.headerContainer {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Add shadow to nav bar */
}

.headerContainer nav {
  position: relative;
}

.headerContainer .contentWrapper {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

.headerContainer .contentWrapper a {
  text-decoration: none;
  color: var(--primary-text);
  font-size: 1em;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.headerContainer .contentWrapper .nav-element {
  padding: 0.5em;
}

.headerContainer .contentWrapper .nav-element a:hover {
  border-radius: 5px;
  box-shadow: 0px 2px 3px rgba(255, 255, 255, 0.5); /* Subtle shadow on hover */
  transform: translateY(-1px); /* Lift effect on hover */
}

.headerContainer .contentWrapper .nav-element:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--plain); /* Highlight underline on hover */
  border-radius: 1px;
}
