@font-face {
    font-family: 'VAGRoundedStd-Black';
    src: url('fonts/VAGRoundedStd-Black.woff2') format('woff2'),
         url('fonts/VAGRoundedStd-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'VAGRoundedStd-Black', Arial, sans-serif;
    background-color: #FFD205; /* Color amarillo del PRO  blanco es esto #f2f2f2; */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

header {
    background-color: #FFD205; /* Color amarillo del PRO */
    padding: 20px 0;
}

header h1 {
    margin: 0;
    color: #000;
    font-weight: 700;
}

.profile {
    margin: 20px 0;
}

.profile img {
    width: 200px; /* Tamaño sugerido */
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.profile p {
    font-size: 18px;
    font-weight: 400;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    margin: 0 10px;
    color: #000000; /* Color negro ahora amarillo del PRO */
    font-size: 24px;
    text-decoration: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .profile img {
        width: 150px;
    }

    .social-links a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .profile img {
        width: 120px;
    }

    .profile p {
        font-size: 16px;
    }

    .social-links a {
        font-size: 18px;
    }
}