:root {
  --bg: #f0f4f85b;
  --card: #ffffff63;
  --text: #22222246;
  --border: #ccc;
  --input: #f9f9f9;
  --primary: #00C9FF;
  --secondary: #2b60a5;
  --border: #ccc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1e1e1e;
    --card: #2a2a2a73;
    --text: #eeeeee36;
    --input: #3a3a3a;
    --border: #444;
  }
}
* {
  box-sizing: border-box;
}
body {
  background-image: url(img/Portada.jpg);
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
div #palabra{
  color: #ffffff;
}
.form-container {
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.1),
              -10px -10px 30px rgba(255,255,255,0.2);
  width: 100%;
  max-width: 400px;
}
h1{
  font-family: 'Gypsy Curse', cursive;
  color: #DAA520; 
  text-shadow: 3px 3px 5px rgb(0, 0, 0);
  font-size: 4em;
  text-align: center;
}
nav{
    display: inline-block;
}
nav a{
    color: #ffffff;
    font-size: 1.2em;
    text-decoration: none;
    margin-right: 15px;
    list-style: none;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group i {
  position: absolute;
  left: 15px;
  top: 13px;
  color: var(--primary);
}
#palabra input, text {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  background: var(--input);
  color: var(--text);
}
input:focus, text:focus {
  outline: none;
  border-color: var(--primary);
}
text {
  resize: vertical;
  min-height: 100px;
}
#super-button {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.267);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: 0 8px 20px rgb(0, 200, 255);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#dibujo{
  text-align: center;
}
.super-boton:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgb(0, 200, 255);
}
