body {
  background-color: var(--background-color);
  color: var(--text-primary);
  width: 100%;
  padding: 0 0.5rem;
  min-height: 100dvh;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

header nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

header nav a {
  transition: all 0.2s ease;
}

header nav a:hover {
  color: var(--text-secundary);
}

main {
  max-width: 800px;
  margin: 1rem auto;
}

main article {
  margin: 5rem 0;
}

main article h1 {
  text-align: center;
  font-size: 3rem;
}

.btns {
  margin: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-main {
  color: black;
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

/* --------------------- */

section {
  margin: 10rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

#exemples {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#exemples img {
  max-width: 300px;
  border-radius: 1rem;
  position: relative;
}

#exemples .box-comment {
  position: absolute;
  padding: 1rem;
  background-color: #2d3948;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  /* padding: 1rem; */
  border: 0.1rem solid #435469;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 250px;
}

#exemples #box-one {
  top: 0;
  right: 0;
  margin-right: 5rem;
  margin-top: -1rem;
}

#exemples #box-two {
  bottom: 0;
  left: 0;
  margin-left: 5rem;
  margin-bottom: -1rem;
}

#exemples .box-comment img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#exemples .box-comment .comment {
  font-size: 0.9rem;
}

#exemples .box-comment .comment .user-name {
  color: var(--text-secundary);
  font-size: 0.8rem;
}

.create p {
  text-align: center;
}

.container-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.container-how .box-how {
  font-size: 0.9rem;
  padding: 1rem;
  background-color: #2d3948;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  /* padding: 1rem; */
  border: 0.1rem solid #435469;
  transition: all 0.2s ease;
}

.container-price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-price {
  padding: 2rem 3rem;
  background-color: #2d3948;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  /* padding: 1rem; */
  border: 0.1rem solid #435469;
}

.box-price h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.box-price .btn {
  margin-top: 2rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secundary);
  margin: 0.5rem 0;
}

@media screen and (max-width: 500px) {
  main article h1 {
    font-size: 2rem;
  }

  section .container-how {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  #exemples #box-one,
  #exemples #box-two {
    margin-left: 0;
    margin-right: 0;
  }
}
