/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent scrolling beyond the viewport */
html, body {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

/* Full-screen background image with video */
.bgimg {
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}

.bgimg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Antonio font for the center section */
@font-face {
  font-family: 'Antonio';
  src: url('Antonio-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Montserrat-Regular font for demo text */
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('Montserrat-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

/* Logo Section */
.logo-section {
  margin-bottom: 20px;
  text-align: center;
}

.logo {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  margin: 0 auto;
}

.container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* Legalize section with static text and button below */
.legalize-section {
  margin-bottom: 20px;
  font-family: 'Antonio', sans-serif;
  color: #c2fbff;
  font-size: 22px;
}

.legalize-button {
  background-color: transparent;
  border: 2px solid #c2fbff;
  color: #c2fbff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 14px; /* This makes the button rounded */
}

.legalize-button:hover {
  background-color: #c2fbff;
  color: black;
}

/* Social icons styling */
.social-icons-list .social-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.instagram {
  background-image: url('instagram.svg');
}

.email {
  background-image: url('email.svg');
}

.social-icon a {
  display: block;
  width: 100%;
  height: 100%;
}

.social-icon:hover.instagram {
  background-image: url('instagram-hover.svg');
}

.social-icon:hover.email {
  background-image: url('email-hover.svg');
}

/* Footer styling */
.footer {
  font-family: 'Montserrat-Regular', sans-serif;
  background-color: transparent;
  color: #c2fbff;
  text-align: center;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .container {
    top: 45%;
  }
  .logo {
    max-height: 450px;
  }
}

@media (max-width: 992px) {
  .container {
    top: 45%;
  }
  .logo {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .container {
    top: 45%;
  }
  .logo {
    max-height: 450px;
  }
}

@media (max-width: 576px) {
  .container {
    top: 45%;
    padding: 0 10px;
  }
  .legalize-section p {
    font-size: 22px;
  }
  .legalize-button {
    font-size: 14px;
    padding: 8px 15px;
  }
  .logo {
    max-height: 450px;
  }
  .footer {
    padding: 15px;
  }
}