body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('../images/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    background-attachment: fixed; /* Esto hace que el fondo tenga el efecto parallax */
}

.header {
    background-color: rgba(50, 50, 50, 0.8);
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.logo {
    max-width: 150px; /* Ajusta el tamaño del logo si es necesario */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.main-content {
    margin: 100px 0;
}

.main-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.description {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons .btn-custom {
    background-color: #444;
    color: white;
    border: 2px solid #555;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 50px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    font-size: 1em;
    width: 150px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons .btn-custom:hover {
    background-color: #666;
    border-color: #777;
    transform: scale(1.1);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.7);
}

.footer {
    background-color: rgba(50, 50, 50, 0.8);
    padding: 10px 0;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-media .social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media .social-link:hover {
    transform: scale(1.2);
}

.social-media img {
    width: 30px;
    margin: 0 10px;
}

.copyright {
    margin-top: 20px;
}
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
