body{
    color: #fff;
    background-color: #302F2F;
    text-align: center;
}

h2{
    font-family: "cinzel";
    font-weight: 300;
    font-size: 35px;
    margin: 20px;
    text-decoration: underline;
    text-decoration-color: #B22222;
    text-underline-offset: 10px;
    text-decoration-thickness: 5px;
    padding: 10px;
}

p{
    font-family: "cinzel";
    font-weight: 100;
    padding: 50px;
    font-size: 19px;
    text-align: justify;
    margin: 0 100px 0 100px;
    line-height: 1.5;
}

.img__conteiner{
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
}

img{
    width: 400px;
    height: 300px;
    padding: 30px;
}

img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

video{
    width: 75%;
    height: 75%;
    border-radius: 20px;
    margin: 10px;
    box-shadow: 0 0 10px #B22222;
    margin: 10px;
}

.boton__de__regreso{
    text-decoration: none;
    position: fixed;
    z-index: 5;
    top: 20px;
    right: 20px;
    font-family: "cinzel";
    color: #000;
    border: 3px solid #B22222;
    padding: 10px 20px;
}

.boton__de__regreso:hover{
    background-color: #B22222;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

a{
    font-family: "cinzel";
    text-decoration: none;
    color: #fff;
    border: 2px solid #B22222;
    padding: 5px 10px;
    margin: 10px;
}

a:hover{
    background-color: #B22222;
    transition: all 0.3s ease-in-out;
}

footer{
    background-color: #fff;
    color: #000;
    padding: 20px;
    font-family: "cinzel";
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    border-radius: 2px;
    line-height: 1.5;
}

/* Media query para pantallas pequeñas */
@media only screen and (max-width: 600px) {
    body {
        font-size: 16px;
        padding: 8px;
    }
    h2 {
        font-size: 22px;
        padding: 5px;
    }
    p {
        margin: 0 10px;
        padding: 10px 5px;
        font-size: 15px;
    }
    .img__conteiner {
        flex-direction: column;
        padding: 5px;
    }
    img {
        width: 95%;
        height: auto;
        max-width: 300px;
        margin: 5px auto;
    }
    video {
        width: 100%;
        height: auto;
        margin: 5px auto;
    }
    .boton__de__regreso {
        padding: 8px 12px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
    a {
        padding: 4px 8px;
        font-size: 14px;
    }
    
.enlaze__github{
    color: #000;
    font-weight: bold;
}

.enlaze__github:hover{
    color: #fff;
    transition: all 0.3s ease-in-out;
}
