h1 {
  color: #f3f3f3;
  font-size: 4em;
  font-weight: bold;
}

h1::after {
  content: "";
  display: block;
  margin-left: 3px;
  width: 80px;
  height: 2px;
  animation: sliderIn 1s ease;
  background-color: #0066cc;
}

h2 {
  margin-top: 20px;
  font-weight: 500;
  color: #f3f3f3;
}

p {
  color: #f3f3f3;
  margin-top: 20px;
  margin-left: 20px;
}

p::before {
  content: "●";
  margin-right: 10px;
}

img {
  animation: imageIn 0.5s ease;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #0255a8;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-left: 20px;
}

.soon {
  cursor: default;
  background-color: #464447;
}

.home::after {
  background-color: #0255a8 !important;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 10px solid #162a3f;
  border-right: 10px solid transparent;
  width: 0;
}

.bg_downloads {
  max-width: 100%;
  background-image: url("../img/ondas.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;

  animation: ondas 1s ease;
}

.flex_downloads {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.leftside {
  display: flex;
  width: 50vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.rightside {
  display: flex;
  width: 50vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  align-items: center;
}

.blackbox {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 80%;
  padding: 40px;
  background-color: rgba(28, 28, 28, 0.8);
  border-radius: 10px;

  animation: fadeIn 0.5s ease;
}
.blackbox::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border-top: 60px solid #0066cc;
  border-right: 60px solid transparent;
  width: 0;
}

/* Animations */
@keyframes ondas {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sliderIn {
  0% {
    width: 0px;
  }

  100% {
    width: 80px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes imageIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1000px) and (min-width: 450px) {
  .rightside {
    display: none;
  }

  .leftside {
    width: 80vw;
  }
}

@media (max-width: 450px) {
  .rightside {
    display: none;
  }
  .leftside {
    width: 100vw;
  }

  .blackbox {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    margin-top: 120px;
    animation: ondas 1s ease;
    background-color: rgba(28, 28, 28, 0.151);
  }

  .blackbox::before {
    display: none;
  }

  .bg_downloads {
    background-size: cover;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1em;
  }

  p {
    color: #f3f3f3;
    font-size: 0.8em;
    margin-top: 20px;
    margin-left: 20px;
  }

  p::before {
    content: "●";
    margin-right: 10px;
  }

  .btn {
    font-size: 0.8em;
    text-align: center;
    background-color: #232224;
  }

  .soon {
    cursor: default;
    background-color: #464447;
  }

  .btn::after {
    display: none;
  }
}
