body{
    padding: 0%;
    margin: 0%;
    color: #31655c;
}

header{
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: dotted 1px #31655c;
}
header h1{
    padding: 10px 20px;
    background-color: aquamarine;
    border-radius: 10px;
}

main{
    max-width: 500px;
    margin: auto;
    padding: 0px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:24px;
}
main h2{
    margin-bottom: 0px;
}
main textarea{
    width: 100%;
    min-width: 280px;
    min-height: 250px;
    border: solid aquamarine 1px;
    border-radius: 5px;
    padding: 10px;
}
main button{
    padding: 12px 24px;
    background-color: #31655c;
    border-radius: 10px;
    color: aquamarine;
    border: none;
}
pre{
    display: flex;
    justify-content:center;
    text-wrap: inherit;
    margin-top: 0%;
}

.checkbox-label {
  padding: 12px 24px;
  color: 31655c;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  accent-color: aquamarine; /* estiliza el checkbox moderno */
}