
* {

  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Zen+Dots&display=swap');
body {
  text-align: center;
  background-color: rgba(50, 193, 241, 0.492);
  min-height: 100vh;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  
}

.container {
  background-color: black;
  color: white;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  max-width: 1500px;
  max-height: 1000px;
  border-radius: 10px;
}

.input-container {
  margin-bottom: 20px;
}

.container h2 {
  margin: 20px;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #048181;
  font-weight: bolder;
  font-size: 3.4rem;
  
  -webkit-text-stroke: #050505 2px;
  text-shadow: 0 0 26px white;
}

.container input {
  padding: 10px 20px;
  width: 100%;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
}

.btns-container {
  display: grid;
  grid-template-columns: repeat;
  gap: 15px;
  margin: 5px 0;
}

.lineaEstilo {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 20px;
  padding: 10px;
  border: 2px solid #048181;
  border-radius: 8px;
  background-color: #ffffff26;
}

.btn {
  flex: 1 1 auto;
  padding: 6px 12px;
  font-weight: bolder;
  font-size: 1.5rem;
  background-color: rgba(226, 158, 75, 0.429);
  border: none;
  border-radius: 5px;
  min-width: 70px;
  max-width: 400px;
  max-height: 80px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  cursor: pointer;
  background-color: rgb(255, 174, 0);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.977);
}
.btn-desc{
  font-size: 1.4rem;
}
.resultado {
  color: black;
  background-color: #048181;
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  font-size: 1.3rem;
  margin-top: 20px;
}

/* Estilos dinámicos
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
  outline-offset: 10px;
  
}

.capitalize {
  text-transform: capitalize;
} */

.bold {
  font-weight: bolder;
  text-shadow: 1px 1px 2px black;
  
}

.italic {
  font-style: italic;
  
}

.strikethrough {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.font-small {
  font-size: 1rem;
}

.font-medium {
  font-size: 1.3rem;
}

.font-large {
  font-size: 1.6rem;
  
}

.letter-spacing {
  letter-spacing: 5px;
  max-width: 100%;
}

.word-spacing {
  max-width: 100%;
  word-spacing: 10px;
}

.active-btn {
  background-color: rgb(255, 174, 0);
  color: rgb(0, 0, 0);
}

