/* Cover */
.cover {
  width: 100vw; height: 100vh;
}

.cover-img {
  width: 100vw; height: 100vh;
  background-image: url('../img/Cover.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.cover-text {
  position: absolute;
  top: 40%; right: 3%;
}

.cover-text h1, .cover-text h2 {
  color: white;
}

.cover-text h1 {
  font-size: 6vw;
  font-weight: 700;
  text-align: left;
  text-shadow: 8px 8px 3px #000;
  margin-bottom: 0.3rem;
}

.cover-text h2 {
  font-size: 4vw;
  text-align: right;
}

@media screen and (max-width: 1300px) {
  .cover-text h1 {
    font-size: 6vw;
  }

  .cover-text h2 {
    font-size: 4vw;
  }
}

@media screen and (max-width: 1000px) {
  .cover-text {
    top: 80%; right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
  }

  .cover-text h1, .cover-text h2 {
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .cover-text h1 {
    font-size: 8vw;
  }

  .cover-text h2 {
    font-size: 6vw;
  }
}

@media screen and (max-width: 580px) {
  .cover-text {
    top: 80%; right: 50%;
    transform: translate(45%, -50%);
  }

  .cover-text h1 {
    font-size: 9vw;
  }

  .cover-text h2 {
    font-size: 7vw;
  }
}

@media screen and (max-width: 500px) {
  .cover-text h1 {
    font-size: 11vw;
  }

  .cover-text h2 {
    font-size: 9vw;
  }
}

@media screen and (max-width: 325px) {
  .cover-text h1 {
    font-size: 13vw;
  }
}

/* About Section */

.about {
  text-align: justify;

  width: 85%;
  justify-content: center;
  letter-spacing: 0;

  margin: 3rem auto;
}