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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.face{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 200px;
    justify-content: center;
}

.socials{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
    min-width: 320px;
    gap: 10px;
    justify-content: center;
}

.social{
    width: auto;
    height: auto;
    padding: 5px 0;
    margin: 0 10px;
    opacity: 70%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, transform 0.1s linear;
    transition-delay: 0.2s; /* Delay de 0.2s antes de cambiar la opacidad */
}

.social:hover{
    opacity: 100%;
}



