* {
    box-sizing: border-box;
}

body {
    background-color: #292929;
    color: white; 
    font-family: 'Open Sans', sans-serif;
}

.introduction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.profile{
    object-fit: cover;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.personal-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.personal-info .name {
    font-size: 50px;
    margin: 4px;
}

.social {
    display: flex;
    justify-content: space-between;
}

.fa {
    width: 30px;
    height: 30px;
}

