h1 {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-transform: uppercase;
    margin: 0;
}

h2 {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0;
}

p {
    font-size: 18px;
    font-weight: 300;
}

p.skills {
    line-height: 200%;
    margin: 0;
}

.about {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0 0 96px 0;
    position: relative;
}

.info_container {
    display: flex;
    gap: 80px;
    width: 66.66%;
    max-width: 1280px;
    min-width: 744px;
    position: relative;
}

.info_inner_container {
    display: flex;
    gap: 40px;
    flex: 1;
}

.my_image_scribble {
    height: 25vw;
    width: 25vw;
    background-color: #555555;
    background-image: url("../assets/portrait/my_image-min.jpg");
    /* background-image: url("../assets/scribble/my_image1-min.jpg"); */
    background-size: cover;
    /* transition: 0.2s; */
}

.about_me_container {
    flex: 1 0 0;
}

.details_container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.details_inner_container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact_container {
    display: flex;
    gap: 16px;
}

.contact_button {
    width: 40px;
    height: 40px;
    border: solid 1px var(--white);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: center;
    z-index: 6;
    transition: 0.2s;
}

.contact_button:hover {
    filter: invert(1);
    background-color: black;
}


#linkedin {
    background-image: url("../assets/px_icon_linkedin.svg");
}

#email {
    background-image: url("../assets/px_icon_mail.svg");
}

#cv {
    background-image: url("../assets/px_icon_cv.svg");
}

.email_container {
    z-index: 5;
}

.tooltip {
    position: absolute;
    transform: translate(-10px, 12px);

    font-size: 14px;
    background-color: white;
    color: var(--bg);
    padding: 2px 8px;

    opacity: 0;
    transition: 0.2s;
}

.tooltip::after {
    position: absolute;
    transform: translatex(-50%);
    top: -1px;
    left: 50%;
    content: "";
    background-color: white;
    width: 8px;
    height: 8px;
    rotate: 45deg;
}