*{
    margin: 0;padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    background: #000;
}

.main{
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.profile{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin: 30px 30px 20px 30px;    
    gap: 10px;
}
.profile img{
    width: 60px;
    height: 60px;
    background: #8f8f8f;
    border-radius: 50px;
    box-shadow:  0px 0px 10px rgb(255, 255, 255);
}
.link{
    width: 50%;
    max-width: 400px;
    min-width: 300px;
    height: 50px;
    padding: 15px;
    margin: 10px;
    text-decoration: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid wheat 2px;
    box-shadow: 0px 0px 5px wheat;
    border-radius: 5px;
}
.link:hover{
    transform: scale(1.02);
    transition: all 0.02s;
    border: solid white 2px;    
}
.link:hover .name{
    color: white;
}
.link:hover i{
    color: white;
}

.link i, .name{
   color: wheat;
   text-shadow: 0px 0px 2px;
}
.icon{
    font-size: 20px;
}
.fa-link{
    font-size: 10px;
}
.foot{
    font-size: 15px;
    color: white;

    margin: 30px 0px;
}


/* -----------------resposive------------------- */

@media  (max-width:430px){
    .profile{
        align-items: center;
        text-align: center;
        color: #fff;
        font-size: 10px;
        gap: 0px;
        margin-top: 30px;
    }
    .profile h1{
        /* border: solid white 1px; */
        /* padding: 4px 10px; */
        margin: 10px;
        border-radius: 0px;
    }
    .profile p{
        font-size: 12px;
        /* padding: 6px 10px; */
        /* border: solid white 1px; */
        border-radius: 0px;
    }
    .link{
        font-size: 18px;
        padding: 10px 10px;
    }
    .icon{
    font-size: 26px;
    }
    .fa-link{
        font-size: 12px;
    }
    .foot{
        font-size: 10px;
    }
}