body{background-color: black;
    font-family: 'FuenteMain';
    background-image: url(MuroFondo.png);
    background-repeat: repeat;
    margin: 0;
    padding: 0;
    color: yellow;
}

@font-face {
    font-family: "FuenteMain";
    src: url(GotenborgFraktur.ttf) format(truetype);
    font-weight: normal;
    font-style: normal;
}

.CuerpoPagina{
    width: 950px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    background-color: black;
    padding: 30px 20px;
    box-sizing: border-box;
    overflow: hidden;

}

.distribuyeTitulo{
    font-size: 100px;
    text-align: center;
}

.cabeceraDragon{
    display: flex;
    flex-direction: row;
}

.cabeceraDragon img{
    object-fit: contain;
    width: 600px;
}

.textoDistribucion{
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.textoDistribucion h1{
    margin: 0;
}

.textoDistribucion p{
    font-size: 20px;
}

.seccionContacto {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    color: #fff;
    font-family: 'FuenteMain', sans-serif;
}

.seccionContacto h2 {
    color: yellow;
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.seccionContacto p {
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
}

.formularioContacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formularioContacto label {
    color: yellow;
    font-weight: bold;
    font-size: 14px;
}

.formularioContacto input,
.formularioContacto textarea {
    background-color: #111;
    border: 2px solid #333;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.formularioContacto input:focus,
.formularioContacto textarea:focus {
    outline: none;
    border-color: yellow; /* Ilumina el borde en amarillo al escribir */
}

.formularioContacto button {
    background-color: yellow;
    color: #000;
    border: none;
    padding: 14px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.formularioContacto button:hover {
    background-color: red;
    color: #fff;
}