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


body
{
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    color: white;
}

.container{


    background-color: hsl(0, 0%, 8%);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;

   

   
}

.profile{



    background-color: hsl(0, 0%, 12%);
    width: auto;
    height: auto;
    padding: 30px;
    border-radius: 3%;
    margin: 20px auto; /* Espacio externo con centrado horizontal */
    box-sizing: border-box;
}

@media (max-width:600px) {


    
    .profile{
        padding: 20px;
        
        width: 90%;
    }



}

.profile-social-media{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.profile-social-media >  :hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
}

.profile-social-media > div{
    
    background-color: hsl(0, 0%, 20%);
    font-size: 14px;
    width: 300px;
    border-radius: 7px;
    height: 40px;
    align-content: center;

    max-width: 100%;


}

h1{
    font-size: 24px;
    margin-bottom: 0;
}

h2{
    margin-top: 5px;
    color: hsl(75, 94%, 57%);
}

p, h2{
    font-size: 14px;
    margin-bottom: 20px;
}

img{
    border-radius: 50%;
    width: 100px;
}


footer{
    position: absolute; 
    bottom: 10px;
    margin: 0 10px;
}