/* Estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Krisha";
  src: url("./assets/font/Krisha-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Roboto-Light";
  src: url("./assets/font/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("./assets/font/Roboto-Medium.ttf") format("truetype");
}
/* conteudo */

body {
  background: #d9d9d9;
}

main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-principal {
  font-size: 5rem;
  color: #102a25;
  font-family: "Krisha", sans-serif;
  font-weight: 100;
}

.p-principal strong {
  font-size: 7rem;
  display: block;
  margin-top: -1.5rem;
}
.p-secundario {
  font-size: 2rem;
  font-family: "Roboto-Light", sans-serif;
}

button {
  padding: 2rem 3rem;
  border-radius: 3rem;
  border: none;
  background: #63e6a5;
  color: #102a25;
  font-size: 2rem;
  cursor: pointer;
  margin-top: 2rem;
  font-family: "Roboto-Medium", sans-serif;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

button:hover {
  scale: 1.1;
  transition: all 0.3s ease-in-out;
  background: #38d9a9;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1450px) {
  .p-principal {
    font-size: 7rem;
  }
    .p-principal strong {
    font-size: 9.5rem;
  }
  .p-secundario {
    font-size: 3rem;
  }

  button {
    padding: 2rem 4rem;
    border-radius: 4rem;
    font-size: 3rem;
  }

}

@media (max-width: 1015px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 580px) {

  .p-principal {
    font-size: 2.2rem;
  }
  .p-principal strong {
    font-size: 3rem;
    margin-top: -1rem;
  }
  .p-secundario {
    font-size: 0.9rem;
  }
  button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}