* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}

@font-face {
  font-family: "Saans100";
  src: url("./font/Saans100RegularRegular.woff2") format("woff2"),
    url("./font/Saans100RegularRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saans100";
  src: url("./font/Saans100MediumRegular.woff2") format("woff2"),
    url("./font/Saans100MediumRegular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saans100";
  src: url("./font/Saans100BoldRegular.woff2") format("woff2"),
    url("./font/Saans100BoldRegular.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  background: white;
  font-family: "Saans100", sans-serif;
  font-weight: 400; /* regular */
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.social-icons {
  position: absolute;
  bottom: 30px;
  right: 50%;
  z-index: 10;
  transform: translateX(50%);
}
.text-social {
  text-align: center;
  color: aliceblue;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Saans100", sans-serif;
}
.icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.icons img {
  width: 28px;
  height: 28px;
}

.content {
transform: scale(1.2);
  color: white;
  text-align: center;
  padding: 20px;
  max-width: 90%;
  z-index: 10;
}

.logo {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 1000;
  width: 150px;
  transform: translateX(-50%);
}

h1 {
  font-weight: 700; /* bold */
  font-size: 4em;
  margin-bottom: 0.5em;
  width: 500px;
  margin: auto;
}

p {
  font-size: 1.1em;
  max-width: 400px;
  margin: 0.4em auto 1.5em auto;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

input[type="email"] {
  padding: 10px;
  max-width: 260px;
  width: 100%;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10.199999809265137px);
}
input[type="email"]:focus {
  outline: none;
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.651);
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.753);
}

button:hover {
  background-color: #f3f3f3;
}

@media only screen and (max-width: 600px) {
  .logo {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 1000;
    width: 120px;
    transform: translateX(-50%);
  }

  h1 {
    font-size: 2.5em;
    margin: 0 auto 0.2em auto;
    width: 100%;
  }

  p {
    font-size: 1em;
    margin-bottom: 1.5em;
    max-width: 600px;
    margin: 0 auto 1.5em auto;
  }

  .icons {
    display: flex;
    gap: 20px;
  }
  button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.753);
  }

  .social-icons {
    width: 100%;
  }
}
