@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap");
/*
Light 300
Regular 400
Semi-bold 600
Bold 700
Extra-bold 800*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.cover__bg {
  background: url(../img/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 100%;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding-bottom: 1.2em;
}

.nav {
  position: relative;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  width: 150px;
  display: flex;
  position: relative;
  padding-top: 1em;
  margin-left: -3em;
}

.logo__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-left: -1.5em;
}

.nav__toggle {
  display: inline-flex;
  font-size: 2rem;
  padding-top: 0.3em;
  cursor: pointer;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    background-color: #EB31D4;
    left: 0;
    top: -100%;
    box-shadow: 0 8px 24px hsla(2deg, 100%, 35%, 0.2);
    width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 0 0 2rem 2rem;
    transition: top 0.4s;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
  text-transform: uppercase;
}

.nav__link, .nav__close {
  color: #FFFFFF;
}

.nav__link {
  font-weight: 700;
}

.nav__link:hover {
  color: #D621A7;
  transition: 0.2s;
}

.nav__close {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

.show-menu {
  top: 0;
}

.active-link {
  color: #D621A7;
}

.home, .home__container {
  position: relative;
}

.home__container {
  padding-top: 12rem;
  display: grid;
  row-gap: 1rem;
}

.home__data {
  text-align: center;
}

.home__title {
  font-weight: 800;
  font-size: 3.5rem;
  color: #D621A7;
}
.home__title span {
  font-weight: 600;
  font-size: 3.5rem;
  color: #EB31D4;
  margin-top: -0.3em;
}

.home__desc {
  font-weight: 400;
  font-size: 1rem;
  color: #FFFFFF;
  padding-top: 0.5em;
}

.home__button {
  width: 100%;
  display: inline-block;
  background-color: #D621A7;
  padding: 0.5rem 2.3rem;
  border-radius: 5em;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-top: 1.5em;
}
.home__button span {
  font-weight: 300;
}

.home__button:hover {
  color: #D621A7;
  border: 1px solid #D621A7;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 280px) {
  .home__data {
    margin: 0 0 0 -0.5em;
  }
}
@media screen and (min-width: 600px) {
  .home__button {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .home__data {
    text-align: left;
  }
  .home__desc {
    max-width: 450px;
  }
}
@media screen and (min-width: 769px) {
  .nav {
    height: 5.5rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    font-size: 15pt;
  }
  .nav {
    height: 5.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav__logo {
    margin-left: 5.5em;
  }
  .nav__menu {
    margin-right: 1.5em;
  }
  .home__data {
    margin-left: 8em;
  }
  .home__title {
    font-size: 4rem;
  }
  .home__title span {
    font-size: 4rem;
  }
}/*# sourceMappingURL=style.css.map */