*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #111315;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

header img{
    height: 60px;
    width: auto;
    padding: 50px;
}

.profile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.profile p{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: white;
    margin-bottom: 40px;
}

.profile img{
    height: 150px;
    width: 150px;
    border: 4px solid white;
    object-fit: cover;
    border-radius: 100%;
}

.links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.link{
    margin-top: 20px;
    width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.link img{
    width: 28px;
    height: auto;
    margin-right: 20px;
}

.links a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.link:hover{
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
}

.link p{
    color: white;
    font-family: "Poppins", sans-serif;
}