* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: 'Poppins', sans-serif;
  color: #3b3b3b;
}

a {
  text-decoration: none;
  color: black;
}

body {
  margin: 0; 
  padding: 0; 
  background-image: url("../Resources/TheOne.png"); 
  background-size: cover; /* Makes the image fill the screen */ 
  background-position: center; /* Keeps the subject centered */ 
  background-repeat: no-repeat; /* Prevents tiling */ 
  background-attachment: fixed; /* Optional: creates a parallax effect */ 
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container header {
  width: 100%;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.container header a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: invert(0);
          filter: invert(0);
}

.container header img {
  height: 8rem;
}

.container .content {
  width: auto; /* prevents full‑width stretching */ 
  align-items: center; /* centers children horizontally */
  padding-top: 40vh;
  margin-bottom: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.container .content-box {
  background: rgba(255, 255, 255, 0.3); /* semi-transparent white */ 
  backdrop-filter: blur(6px); /* frosted glass effect */ 
  padding: 2rem 6rem; 
  border-radius: 1rem; 
  display: inline-block; 
}

.container .content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.container .content h3 {
  border-bottom: 1px solid black;
  font-size: 2rem;
  font-weight: normal;
  margin: 0 auto 3rem auto;
  padding-bottom: 3rem;
  width: 100%;
}


.container .content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.container .content nav a {
  padding: 1rem 2rem;
  margin: .5rem 2rem;
  outline: 2px solid #3b3b3b;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: black;
  transition: all 300ms;
}

.container .content nav a:hover {
  background: black;
  color: white;
}

.container footer {
  padding: 1rem 2rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.container footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  width: 150px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}

.container footer .social a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: invert(0);
          filter: invert(0);
}

.container footer .social a img {
  height: 3rem;
}

