body {
    -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
  user-select: none; /* Standard syntax */
  margin: 0;
  padding: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  z-index: 1;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo img {
  position: fixed;
  margin-top: 20px;
  width: 100px;
  z-index: 999;
}

.main-title {
  font-size: 4rem;
  text-align: left;
  color: aliceblue;
  background: radial-gradient(circle,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.89) 500px);
  padding: 100%;
  z-index: 1;
  position: fixed;
}

.background-text.vertical{
  position: fixed;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  text-align: right;
  color: rgb(255, 255, 255);
  z-index: 1;
  padding-left: 160px;
  animation: scrollDown 5s linear infinite;
  opacity: 0.4;
}

.background-text.horizontal {
  padding-left: 170px;
  padding-top: 10px;
  position: fixed;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  text-align: right;
  color: rgb(255, 255, 255);
  flex-direction: row;
  top: 54%;
  left: 50%;
  transform: translate(-200px, -25px);
  animation: scrollAcross 20s linear infinite;
  font-size: 1.5rem;
  z-index: 9999;
}
.background-text.horizontal a {
  background-color: #ffffff;
  padding: 10px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.background-text.vertical {
  left: 50%;
  transform: translateX(-50%);
  top: -10%;
}

.background-text span {
  margin: 2%
}

footer {
  position: fixed;
  bottom: 0px;
  font-size: 0.8rem;
  color: #ffffff;
  z-index: 9999;
}
footer a{
  background-color: #ffffff;
  padding: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 15px;
  font-size: 15px;
  text-decoration: none;
  color: rgb(54, 54, 54);
}

@keyframes scrollDown {
  0% { top: 10%; }
  100% { top: -37%; }
}

@keyframes scrollAcross {
  0% { left: 50%; }
  100% { left: 50%; }
}
.background-text.vertical {
  line-height: 1;
}

.background-text.vertical span {
  margin: 0;
  padding: 0;
}