* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
    overflow-y: auto; /* Permite el desplazamiento vertical */
}

.container {
    max-width: 80%;
    width: 75%;
    padding: 50px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.profile {
    margin-bottom: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

h1 {
    font-size: 2em;
    margin: 10px 0;
}

p {
    font-size: 1em;
    color: #666;
}

nav {
    margin-top: 12%;
}

.links {
    list-style: none;
    padding: 0;
}

.link-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

#WHATSAPP{
    background-color:#25D366 ;
}

#bottomred{
    background-color: #E53935;
}

#diamonds{
    background-color:#03A9F4 ;
}



.link-button:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Efecto de zoom */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 15px;
    margin-top: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
}

footer p {
    font-size: 0.9em;
    color: #666;
}

.iconoinstagram {
    width: 10%;
}

.primeraimagen, .segundaimagen {
    width: 100%;
    margin: 10px 0;
}

@media (max-width: 600px) {
    .profile-image {
        width: 80px;
        height: 80px;
    }
   

    h1 {
        font-size: 1.5em;
    }

    .link-button {
        padding: 10px 15px;
    }
}




