html,
body {
  padding: 0;
  margin: 0;
  font-family: DM Sans;
  color: #010920;
  background: linear-gradient(
    89.7deg,
    rgb(0, 0, 0) -10.7%,
    rgb(53, 92, 125) 88.8%
  );
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-container {
  position: relative;
  width: 80%;
  height: 80%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 5px 5px 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
}

.logo {
  width: 15rem;
}

.title {
  font-family: "Caprasimo", cursive;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 70px;
  line-height: 100%;
}

.sub-text {
  color: #fff;
  /* width: 50%; */
  text-align: center;
  font-size: 20px;
}

@-webkit-keyframes SlowFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.slowfloat2s {
  -webkit-animation: SlowFloat 2s infinite alternate;
  animation: SlowFloat 2s infinite alternate;
}

.slowfloat3s {
  -webkit-animation: SlowFloat 3s infinite alternate;
  animation: SlowFloat 3s infinite alternate;
}

.links {
  /* position: absolute; */
  display: flex;
  margin-top: 5rem;
  /* bottom: 2.5rem; */
}

.link {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 5px 5px 30px rgba(255, 255, 255, 0.2);
  margin-right: 5px;
}
.link:hover {
  transform: translateY(-4px);
  &:before {
    transform: skewX(45deg) translateX(calc(var(--width) * -1 - 50%));
  }
}

.icon {
  font-size: 20px;
  color: #fff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .main-container {
    width: 90%;
    height: 90%;
  }
  .logo {
    width: 8rem;
  }
  .title {
    font-size: 45px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .title {
    font-size: 54px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .title {
    font-size: 70px;
  }
}
