body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'Lucida';
    background-image: url('../imagenes/25.jpeg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 1600px; 
    margin: 0 auto;
    padding: 20px;
}

header {
    position: relative;
    padding: 10px;
    height: 150px;
}

header img {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 300px;
    height: auto;
}

h1 {
    font-size: 32px; 
    color: white;
    margin: 0;
    text-align: right;
    position: absolute;
    top: 40px; 
    right: 0px; 
    font-family: 'Georgia', serif; 
    font-weight: bold;
    font-style: italic;
    z-index: 1;
}

.buttons {
    position: absolute;
    top: 110px; 
    right: 5px; 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #fcfdff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    box-shadow: 4px 6px #0033cc; 
}

.btn:active {
    transform: translateY(6px);
    box-shadow: 0 2px #20c5aa;
}

.btn:hover {
    background-color:#20c5aa;
    transform: scale(1.05);
}
