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

body {
  font-family: "Poppins", sans-serif;
  /* height: 200vh; */
  background-color: #181a1b;
}
button {
  font-family: "Poppins", sans-serif;
}

header {
  display: flex;
  width: 90%;
  margin: auto;
  height: 66px;
  align-items: center;
  border-bottom: 2px solid #989798;
}

.logo-container,
.nav-links {
  display: flex;
}

.logo-container {
  color: #ccc;
  text-decoration: none;
  height: 100%;
}

.logo {
  height: inherit;
  margin-top: auto;
  height: inherit;
}

.logo-text {
  align-self: center;
  margin-top: 2%;
}

nav {
  flex: 3;
}

.nav-links {
  justify-content: space-around;
  list-style: none;
}

.nav-link {
  color: #5f5f79;
  font-size: 18px;
  text-decoration: none;
}

.presentation {
  display: flex;
  width: 90%;
  margin: auto;
  min-height: 80vh;
  align-items: center;
}

.introduction {
  flex: 1;
}

.intro-text h1 {
  font-size: 44px;
  font-weight: 500;
  background: linear-gradient(to right, #494964, #a3a3bd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-text p {
  margin-top: 5px;
  font-size: 22px;
  color: #585772;
}

.cta {
  padding: 50px 0px 0px 0px;
}

.cta-select {
  border: 2px solid #c46cbb;
  background: transparent;
  color: #c46cbb;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.cta-select:hover {
  background-color: #c900b5;
  color: white;
}

.cta-add {
  background: #c46cbb;
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  border: none;
  color: white;
  margin: 30px 0px 0px 30px;
  transition: 0.3s;
}
.cta-add:hover {
  border: 2px solid #c46cbb;
  background-color: #bb00a85d;
  color: #c46cbb;
}

.cover {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 60vh;
}

.cover img {
  height: 100%;
  filter: drop-shadow(0px 5px 3px black);
}

.hamburger {
  display: none;
  padding-right: 10px;
  height: 100%;
}

.header-space {
  display: flex;
  flex: auto;
  height: 100%;
}

.side-bar {
  display: none;
}

@media screen and (max-width: 1024px) {
  .presentation {
    flex-direction: column;
  }
  .introduction {
    margin-top: 5vh;
    text-align: center;
  }
  .intro-text h1 {
    font-size: 30px;
  }
  .intro-text p {
    font-size: 18px;
  }
  .cta {
    padding: 10px 0px 0px 0px;
    flex-direction: column;
  }
  .cover img {
    width: 80%;
  }
  .cta-add {
    margin: 10px;
  }
}

@media screen and (max-width: 710px) {
  .logo-container {
    justify-content: flex-start;
  }
  .hamburger {
    justify-content: flex-end;
    margin-top: 2vh;
    display: flex;
  }
  .hamburger img {
    z-index: 2;
    width: 25px;
  }
  nav {
    display: none;
  }
  .logo-text {
    font-size: 22px;
  }
  .side-bar {
    display: none;
    position: absolute;
    background-color: #494964;
    width: 300px;
    height: 100vh;
    right: 0px;
    bottom: 0px;
    z-index: 1;
  }
}
