* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
h1 {
  font-size: 36px;
  margin-bottom: 24px;
  font-family: 'Bebas neue', Arial;
  font-weight: 400;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  margin-bottom: 88px;
  padding: 0 10px;
}
.background {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  vertical-align: middle;
}
#display {
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.logo {
  width: 110px;
  margin-bottom: 63px;
}
.content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.darker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
}
a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  color: white;
  background-color: #BA0C2F;
  padding: 8px 12px;
  border-radius: 12px;
}

.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}


.loader {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><radialGradient id="a1" cx=".66" fx=".66" cy=".3125" fy=".3125" gradientTransform="scale(1.5)"><stop offset="0" stop-color="%23010101"></stop><stop offset=".3" stop-color="%23010101" stop-opacity=".9"></stop><stop offset=".6" stop-color="%23010101" stop-opacity=".6"></stop><stop offset=".8" stop-color="%23010101" stop-opacity=".3"></stop><stop offset="1" stop-color="%23010101" stop-opacity="0"></stop></radialGradient><circle transform-origin="center" fill="none" stroke="url(%23a1)" stroke-width="15" stroke-linecap="round" stroke-dasharray="200 1000" stroke-dashoffset="0" cx="100" cy="100" r="70"><animateTransform type="rotate" attributeName="transform" calcMode="spline" dur="2" values="360;0" keyTimes="0;1" keySplines="0 0 1 1" repeatCount="indefinite"></animateTransform></circle><circle transform-origin="center" fill="none" opacity=".2" stroke="%23010101" stroke-width="15" stroke-linecap="round" cx="100" cy="100" r="70"></circle></svg>');
  transition: all .3s ease;
}
