body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.super-container {
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    height: 100vh; /* Asegura que el contenedor ocupe toda la altura de la ventana */
}

header {
    width: 100%;
    background-color: #121212;
    border-bottom: 2px solid #e0e0e0;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #e0e0e0;
    text-align: center;
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.badge-container {
    background: linear-gradient(145deg, #2b2b2b, #3c3c3c);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 60%;
    max-width: 700px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
    margin-left: 2px;
}

.badge-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.badge h2 {
    margin-top: 0;
    color: #e0e0e0;
    text-align: center;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.language-row {
    margin-bottom: 10px;
}

.language-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(145deg, #444, #555);
    transition: background 0.3s ease;
}

.language-item:hover {
    background: linear-gradient(145deg, #555, #666);
}

.language-name {
    flex: 1;
    font-weight: bold;
    color: #e0e0e0;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-percentage {
    margin-left: 10px;
    color: #b0b0b0;
    font-size: 0.875rem;
}

.language-bar {
    height: 100%;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .badge-container {
        width: 80%;
        padding: 15px;
    }
}

.info {
    background: linear-gradient(145deg, #1e1e1e, #2b2b2b);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    padding: 30px;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    margin-right: 2px; 
}

.informacion {
    margin-bottom: 20px;
    font-size: 18px;
    color: #e0e0e0;
}

a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 5px;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

a img {
    height: 24px;
    width: 24px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

a.github {
    background-color: #ffffff;
    color: #000000;
}

a.facebook {
    background-color: #1877f2;
}

a.instagram {
    background-color: #e4405f;
}

a.extra {
    background-color: #333;
}

a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

a:hover img {
    transform: scale(1.3);
}

.info-buttons,
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.responsive-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

