@font-face {
  font-family: "Cabin Sketch";
  src: url(font/CabinSketch-Regular.ttf);
}

body {
  text-align: center;
  background-color: #A5E0CC;
  margin: 0;
  padding: 0;
}

#conteinerPrincipal {
  background-color: #0A2A56;
  border-radius: 15px;
  margin: 60px auto 90px auto;
  padding: 40px 30px;
  font-family: "Cabin Sketch";
  color: #fff;
  max-width: 800px;
  box-sizing: border-box;
}

#littleLetter {
  margin: 40px 20px;
  font-size: 18px;
  line-height: 1.6;
}

#nameTitle {
  font-size: 18px;
}

#nameBox {
  border-radius: 3px;
  height: 30px;
  font-size: 15px;
  padding: 5px;
  width: 80%;
  max-width: 300px;
}

#listaItens {
  border-radius: 3px;
  font-family: "Cabin Sketch";
  cursor: auto;
  height: 36px;
  width: 80%;
  max-width: 300px;
  font-size: 15px;
  padding: 5px;
}

button {
  border-radius: 3px;
  background-color: #0A2A56;
  border: 2px solid white;
  font-family: "Cabin Sketch";
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  height: 42px;
  width: 120px;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.03);
}

p {
  font-size: 18px;
  margin: 20px;
}

a {
  color: #FFE0A6;
  font-size: 20px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "Cabin Sketch";
  src: url(font/CabinSketch-Regular.ttf);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Cabin Sketch";
  background-color: #A5E0CC;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#conteinerPrincipal {
  background-color: #0A2A56;
  border-radius: 15px;
  padding: 40px 30px;
  color: #fff;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}

#littleLetter {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

#nameTitle {
  font-size: 18px;
  margin-bottom: 8px;
}

#nameBox,
#listaItens {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-family: "Cabin Sketch";
}

#listaItens {
  height: 40px;
}

button {
  width: 100%;
  max-width: 200px;
  height: 44px;
  background-color: #0A2A56;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 18px;
  color: white;
  font-family: "Cabin Sketch";
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.03);
}

a {
  margin-top: 30px;
  color: #FFE0A6;
  font-size: 20px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  #conteinerPrincipal {
    margin: 40px 30px;
    padding: 70px 40px;
  }

  h1, h2 {
    font-size: 38px;
    line-height: 1.4;
  }

  #littleLetter {
    font-size: 26px;
    line-height: 1.8;
  }

  #nameTitle {
    font-size: 26px;
    line-height: 1.6;
  }

  #nameBox,
  #listaItens {
    font-size: 24px;
    padding: 16px;
    height: auto;
    line-height: 1.5;
  }

  button {
    font-size: 26px;
    width: 100%;
    max-width: 280px;
    height: 60px;
    padding: 14px;
  }

  a {
    font-size: 28px;
    line-height: 1.6;
  }
}


