@import url("../../fonts/redHat.css");
@import url("../../fonts/archivo.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.video-bg {
  width: 100%;
  height: auto;
  position: absolute;
}

.welcome-content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: last baseline;
  margin-top: 2rem;
  gap: 20px;
  padding: 40px;
  margin-right: 4rem;
}

.text-group {
  display: flex;
  flex-direction: column;
  align-items: last baseline;
  padding: 10px;
  width: 100%;
}

.big-title {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0.5, 0.5, 1);
  text-align: center;
}

.big-text {
  color: white;
  font-size: 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}
.btn-group {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  padding-right: 30px;
  color: white;
  width: 100%;
}

.button-2 {
  font-size: 1em;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  font-family: "Archivo", sans-serif;
  background: white;
  color: #004369;
  font-weight: bold;
  border: 0;
  text-decoration: none;
}

.button-1 {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  outline: none;
  font-weight: bold;
  font-family: "Archivo", sans-serif;
  background: radial-gradient(circle, #9b90c5, #004369);
  color: white !important;
  text-decoration: none;
}

.button-1:hover,
.button-2:hover {
  opacity: 0.9;
}
.button-1:hover,
.button-1:visited {
  color: white !important;
}

.button-1:hover {
  opacity: 0.9;
}
.basic-text {
  color: white;
  width: 50%;
  text-align: justify;
  font-family: "Archivo", sans-serif;
  padding: 20px;
  background-color: rgba(155, 144, 197, 0.1);
  line-height: 1.5;
  font-size: 14px;
}

.link1,
.link2 {
  text-decoration: none;
}
.button-1 a {
  color: white;
}
.button-2 a {
  color: #004369;
}
@media screen and (max-width: 768px) {
  .welcome-content {
    margin: 2rem auto;
    padding: 20px;
    margin-right: 0;
  }

  .big-title {
    font-size: 3rem;
  }

  .big-text {
    font-size: 1.2rem;
  }

  .btn-group {
    justify-content: center;
    padding-right: 0;
  }

  .basic-text {
    width: 90%;
    font-size: 12px;
  }
}

@media screen and (max-width: 1300px) {
  .video-bg {
    display: none;
  }

  body {
    background: linear-gradient(to right, #004369, #9b90c5);
    animation: gradientAnimation 10s infinite;
    display: flex;
    flex-direction: column;
    z-index: 0;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
