body{
    font-family: "Segoe UI", Arial, sans-serif;
}

.center-content {
    position: absolute;
    display: flex;
    width: 520px;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title{
    font-size:xx-large;
    font-weight: bold;
}

.sub-title{
    font-size:medium;
}

.profile-image{
    display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 8vmax;
  
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../img/joao-felipe.jpeg');

    margin-left: 50px;
}

.social-media{
    display:flex;
    flex-direction: row;
}

.social-media span{
    padding-top: 3px;
}

.icon-social-media{
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 10px;
}

.instagram{
    background-image: url( '../img/instagram.svg' );
}

.linkedin{
    background-image: url( '../img/linkedin.svg' );
}

@media only screen and (max-width: 1000px) {
    .center-content {
       flex-direction:column-reverse;
       width: 350px;
       padding-left: 20px;
    }

    .profile-image{
        display:absolute;
        transform: translate(-50%, -50%);
        margin-top: 250px;
        margin-left: 160px;
    }
  }


  