@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 {
    color: #212121;
    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: 300;
}

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

i {
    color: #212121;
}

.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);
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.project-links {
    display: flex;
    margin-left: 0px;
}

.social-links {
    margin-top: 20px;
}

.work {
    background-color: #fff;
    color: #212121;
    border: 1px solid #212121;
    padding: 10px;
    border-radius: 20px;
    min-width: 120px;
    text-align: center;
    justify-content: center;
    font-weight: 500;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    display: inline-block;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
}

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

    .con-content {
        width: 90%;
    }

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