body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFA07A;
    margin: 0;
    padding: 0;
    color: #333;
}
header {
    background-color: #FFA07A;
    color: white;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: #FFA07A;
}
header img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}
header h1 {
    display: inline-block;
    font-size: 1.8em;
    margin: 0;
}
footer {
    background-color: #FFA07A;
    color: white;
    height: 50px;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    font-style: italic;
    letter-spacing: 1px;
}
footer i {
    font-size: 1.0em;
    color: red;
    margin-left: 10px;
}
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    padding: 25px;
    margin: 120px auto 100px;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.6;
    border: 1px solid #141313;
}
.card textarea {
    width: 100%;
    height: 120px;
    margin-top: 20px;
    border: 1px solid #004080;
    border-radius: 5px;
    padding: 12px;
    font-size: 1.1em;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}
.card textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 8px rgba(0, 102, 204, 0.6);
}
.card h1 {
    color: #FFA07A;
    font-size: 2.2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}
.dedications-container {
    margin: 20px 0;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #FFA07A;
    text-align: left;
}
.dedications-container h2 {
    margin-bottom: 10px;
    color: black;
    font-size: 1.5em;
    text-align: center;
}
.dedications-container ul {
    list-style-type: none;
    padding: 0;
}
.dedications-container li {
    margin: 10px 0;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px #FFA07A;
    font-size: 1em;
}
.buttons {
    margin-top: 25px;
}
.buttons button {
    background-color: #E9967A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s;
}
.buttons button:hover {
    background-color: #FA8072;
}
.language-buttons {
    margin-top: 20px;
}
.language-buttons button {
    background-color: #E9967A;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
}
.language-buttons button:hover {
    background-color: #FA8072;
}
/* Estilos para el contenedor del botón de salida */
.exit-container {
    text-align: center;
    margin-top: 20px;
}

/* Estilos para el botón de salida */
.exit-button {
    background-color: #ff4d4d;  /* Color de fondo rojo */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Efecto de cambio de color cuando el ratón pasa por encima */
.exit-button:hover {
    background-color: #ff1a1a;
}