@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Roboto";
}

body {
    background-color: #f9f9f9;
    color: #383838;
    font-size: 0.9rem;
}

h1 {
    margin-top: 10px;
}

h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.con-picture h2 {
    margin-top: 15px;
}

h3 {
    margin-bottom: 20px;
}

p,
li {
    line-height: 1.3rem;
    text-align: justify;
    font-weight: 200;
}

a {
    text-decoration: none;
    margin: 20px;
    color: #383838;
}

i {
    color: #383838;
}

.profile-pic {
    width: 100px;
    margin: 100px 0 30px 0;
}

.con,
.con-picture,
.con-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.con-picture h2 {
    margin-bottom: 30px;
    font-weight: 300;
}

.con-content {
    width: 40%;
}

.box {
    padding: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.box.show {
    opacity: 1;
    transform: translateY(0);
}

.social-links {
    display: flex;
}

.social-link {
    margin-left: 0px;
}

.work {
    background-color: #cccccc;
    color: #383838;
    padding: 10px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.9rem;
    }

    .con-content {
        width: 90%;
    }

    .img-skills {
        width: 100%;
    }
}
