@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html{
  background-color: rgb(63, 63, 63);
}

body {
  height: 100vh;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  perspective: 800px;
}

header {
  display: flex;
  align-items: center;
  background-image: linear-gradient(
    90deg,
    #532e2b,
    30%,
    #ab5e58,
    70%,
    #532e2b 90%
  );
  box-shadow: 0px 0px 20px 2px #000;
  padding: 20px 30px;
  gap: 20px;
}

header .logo img {
  width: 100px;
  filter: drop-shadow(0px 0px 15px rgb(14, 13, 13));
  transition: 0.3s ease-in-out;
}

.logo img:hover {
  filter: drop-shadow(0px 0px 15px rgb(58, 179, 179));
}

header h1 {
  font-size: 20px;
  color: white;
  margin: 0px auto;
  text-shadow: 1px 1px #000;
  text-align: center;
}

header span {
  color: #a0152c;
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 50px 100px;
  height: 100vh;
  flex-wrap: wrap;
  overflow: hidden;
}

main .background-video {
  position: absolute;
  z-index: -2;
  width: 100%;
  object-fit: cover;
}

.background-video video {
  filter: contrast(0.7);
  width: 100%;
  height: 100%;
}

.color-mask {
  position: absolute;
  background-color: rgba(0, 204, 255, 0.26);
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

footer {
  text-align: center;
  margin-top: auto;
  box-shadow: 0px -2px 20px 2px #000;
  background-image: linear-gradient(
    90deg,
    #532e2b,
    30%,
    #ab5e58,
    70%,
    #532e2b 90%
  );
}

footer h2 {
  padding: 20px 0px;
  font-size: 15px;
  font-weight: 600;
}
