* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#container {
  position: relative;
  width: 100vw;
  height: 100vh;
  cursor: default;
  overflow: hidden;
}

.color,
.gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.gray {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 400px;
  background: rgba(27, 32, 44, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;
  z-index: 10;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.062);
  border: 1px solid #fffd6e;
}

.logo {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  z-index: 9;
  width: 80px;
  height: 80px;
}

.logo2 {
  position: absolute;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: auto;
  z-index: 10;
}


.content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  text-shadow: 1px 1px 0 #000;
}

.content h2, .content p {
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
}

.content th,
.content td {
  padding: 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
}

.content th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.facebook {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(3, 3, 3, 0.329);
  backdrop-filter: blur(10px);
  text-align: center;
  z-index: 999;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.062);
  border: 1px solid #fffd6e;
}

.fb-icon {
  width: 80%;
  height: 80%;
  margin: 10% auto;
  display: block;
  fill: white;
}

.fb-icon:hover {
  filter: drop-shadow(0 0 2px rgba(255, 200, 17, 0.8));
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    text-shadow: 1px 1px 0 #000;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

@media (max-width: 600px) {
  .facebook {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}
