@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quattrocento:wght@400;700&display=swap');

/*:root {*/
/*    user-select: none;*/
/*}*/

@keyframes anim1 {
    0%, 33.33% {
        opacity: 1;
    }
    /* Visible during the first third */
    33.34%, 100% {
        opacity: 0;
    }
    /* Hidden for the rest of the time */
}

/* Animation 2: Text 2 visible in the second third */
@keyframes anim2 {
    0%, 33.33% {
        opacity: 0;
    }
    /* Hidden during the first third */
    33.34%, 66.66% {
        opacity: 1;
    }
    /* Visible during the second third */
    66.67%, 100% {
        opacity: 0;
    }
    /* Hidden for the rest of the time */
}

/* Animation 3: Text 3 visible in the last third */
@keyframes anim3 {
    0%, 66.66% {
        opacity: 0;
    }
    /* Hidden during the first two thirds */
    66.67%, 100% {
        opacity: 1;
    }
    /* Visible during the last third */
}

.sign {
    stroke-dasharray: 7744;
    stroke-dashoffset: 7744;
    animation: animate1 15s ease-in-out infinite;
}

@keyframes animate1 {
    0% {
        stroke-dashoffset: 7744;
    }
    25% {
        stroke-dashoffset: 0;
    }
    85% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 7744;

    }
}

@keyframes animate {

    50% {
        stroke-dashoffset: 0;
    }

}


html {
    font-size: 15px;
}


body, html {
    margin: 0;
    padding: 0;
    width: calc(100vw);
    height: calc(100vh - 57px);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;

}

img {
    user-select: none;
}

.top {
    background-color: white;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem rgba(0, 0, 0, 0.19);
}

.top button {
    height: 100%;
    width: 100px;
    position: absolute;
    top: 0;
    left: calc(50% - 50px);
    background-color: white;
    border: none;
    display: none;
}

@keyframes menuDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

#top_menu_phone {
    display: none;

}

.top_inside {
    width: 80%;
    margin: 0 auto;
    display: grid;
    align-items: center;
    height: 100%;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr;
    gap: 0 0;
    grid-template-areas:
    "logo top_menu top_menu"

}


.logo {
    height: 90%;
    width: auto;
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.logo img {
    height: 56px;
    display: none;
}

.logo svg {
    height: 56px;

}


.top_menu {
    float: left;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    grid-area: top_menu;
    gap: 2rem;
}

.top_menu a {
    color: #373737;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.15rem;
    text-align: center;
    position: relative;

}

.top_menu a:after {
    content: '';
    position: absolute;
    background-color: black;
    bottom: -3px;
    left: 50%;
    transition: 0.3s;
    height: 1px;
    width: 0%;
}

.top_menu a:hover:after {
    width: 100%;
    left: 0;
}

.top_menu a:hover {
    color: black;
    transition: 0.2s;
    text-shadow: 0 0.025rem 0.025rem rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem rgba(0, 0, 0, 0.19);

}


.top_menu .cv {
    color: #373737;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.25rem;
    height: 65%;
    width: 8rem;
    border-radius: 1.5rem;
    border: 2px solid #878686;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_menu .cv:after {
    width: 0%;
}

.top_menu .cv:hover:after {
    width: 0%;
}

.top_menu .cv:hover {
    color: white;
    border: 2px solid #808080;
    background-color: #808080;
}

.cv_phone {
    display: none;
}

.introduction_part {
    width: 100vw;
    min-height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


.introduction {
    margin: 100px 0;
    width: 77rem;
    height: 25.8125rem; /* 413px */
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0 0;
    grid-template-areas:
    "introduction_photo introduction_atlas_photo introduction_text";

}


.introduction_photo {
    /* 413px */
    grid-area: introduction_photo;
    padding: 0;
    display: flex;


}

.introduction_photo img {
    height: 25.8125rem; /* 413px */
    width: 25.8125rem;
    object-fit: contain;
}

.introduction_atlas_photo {
    margin-top: 2rem;
    grid-area: introduction_atlas_photo;
    height: 100%;
    margin-left: 2rem;
}

.introduction_atlas_photo_normal {
    width: 2.5rem;
    object-fit: contain;
}

.introduction_atlas_photo_90deg {
    display: none;
}

.introduction_text {
    padding-left: 2.5rem;
    height: 25.8125rem; /* 413px */
    width: 46.375rem;
    grid-area: introduction_text;
    margin-top: 2rem;
}

.introduction_text b {
    font-weight: normal;

}

.introduction_text h1 span {
    display: inline-block;
    width: 30rem;
    height: 3.125px;
    position: relative;
    top: 0;
    right: 0;

}

.introduction_text h1 span h1 {
    position: absolute;
    left: 0;
    bottom: -13px;
    margin: 0;
}

.broep_1 {
    opacity: 0;
    animation: anim1 6s;


    animation-iteration-count: infinite;
}

.broep_2 {
    opacity: 0;
    animation: anim2 6s;

    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.broep_3 {
    opacity: 0;
    animation: anim3 6s;


    animation-iteration-count: infinite;
}

.introduction_text h1 {
    font-size: 3rem; /* 48px */
    font-family: Centaur, "Quattrocento", serif;
    font-weight: normal;
    margin: 0;

}

.introduction_text p {
    font-size: 1.25rem; /* 20px */
    font-family: Arial, serif;
    font-weight: normal;
    line-height: 2.1875rem; /* 35px */
    margin: 0;
}

.introduction_text i {
    font-style: normal;
}

.icon {
    height: 1.75rem; /* 28px */
    width: 60%;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
    float: right;
}

.icon a img {
    width: 1.5rem; /* 20px */
    height: 1.5rem; /* 20px */
    margin-left: 1.5rem; /* 20px */
}

.skill_part {
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.h1 {
    height: 40px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.1rem solid #a4a4a4;
    margin-bottom: 10px;
    margin-top: 60px;
}

.h1 img {
    height: 100%;
    max-height: 40px;
}

.line {
    display: inline;
    font-family: Centaur, serif;
    text-align: center;
    padding: 0px 20px 5px 20px;
    border: 1px solid #a4a4a4;
    border-bottom: 0;
    border-radius: 0.625rem 0.625rem 0rem 0rem;
}

.skill_box {
    width: 90%;
    max-width: 80rem;
    flex-direction: column;


}

.skill_lists {
    margin-top: 10px;
    display: flex;
    width: 100%;

}

.skill_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    transition: 5s;
}

.skill_list.skill_menu.active h2 {
    color: black;
    text-shadow: none;
}

.skill_list.skill_menu.active img {
    color: black;
    text-shadow: none;
    opacity: 1;
}

.skill_menu:nth-child(2) {
    justify-content: center;
}

.skill_menu:nth-child(3) {
    justify-content: flex-end;
}

.skill_list h2 {

    margin: 0 20px;
    color: #fff;
    text-shadow: 1px 0 #757575, 1px 1px #757575, 1px -1px #757575, 0px 1px #757575,
    0px -1px #757575, -1px 0 #757575, -1px 1px #757575, -1px -1px #757575;
    user-select: none;
    font-family: Centaur, serif;

}

.skill_list img {
    height: 100px;
    opacity: 0;

}

.skill_wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    border: 1px solid grey;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill_grid {
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;

}

.skill_grid.skill-box.active {
    visibility: visible;
    opacity: 1;
    transition: 0.25s;
}

.education {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.education img {
    height: 200px;
    width: 200px;
}

.education div {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid grey;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: height 1s ease-in-out, width 1s ease-in-out;
}

.education div span {
    opacity: 0;
    transition: 1s;
}

.education div:nth-of-type(1):hover {
    height: 500px;
}

.education div:nth-of-type(2):hover {
    height: 370px;
}

.education div:nth-of-type(3):hover {
    height: 420px;
}

.education div:hover {
    width: 300px;
    max-height: 100%;

}

.education div:hover span {
    opacity: 1;

}

.skill {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;


}

.skill > div {

    height: 100px;
    width: 100px;
    /* background-color: rgba(128, 128, 128, 0.51);*/
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid grey;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.skill > div p {
    color: #5c5c5c;
    font-weight: bold;
}

.skill > div svg {
    height: 70px;
    width: 70px;
    fill: gray;

}

.skill > div:nth-of-type(1) svg {
    fill: #f5de25;
}

.skill > div:nth-of-type(2) svg {
    fill: #fa4e13;
}

.skill > div:nth-of-type(3) svg {
    fill: #0878bc;
}

.skill > div:nth-of-type(4) svg {
    fill: #545f95;
}

.skill > div:nth-of-type(5) svg {
    fill: #c1810f;
}

.skill > div:nth-of-type(6) svg {

}

.skill > div:last-of-type div {
    gap: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

.skill > div:last-of-type div svg {
    height: 30px;
    width: 30px;
}

.skill > div:last-of-type p {
    text-align: center;
    margin: 0;
}

.experience {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    align-content: center;
}

.experience div {
    width: 90%;
    max-width: 400px;
    height: 210px;
    border: 1px solid gray;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.experience div h1 {
    font-size: 2rem;
    color: black;
    text-align: left;
    width: 100%;
    font-family: Centaur, "Quattrocento", serif;
    margin: 0;
}

.experience div p {
    color: #5c5c5c;
}

.project_part {
    width: 100vw;
    min-height: 100vh;
    background-color: white;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
}
.project-tag{
    margin: 2rem 0;
    width: 90%;
    max-width: 1300px;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.project-tag button{
    padding: 10px 20px;
    border: 2px solid lightgray;
    border-radius: 10px;
    background: #ffffff;
    font-family: Centaur, serif;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.project-tag button.active{
    background-color: #323232;
    color: white;
}
.projects {
    height: 100%;
    width: 90%;
    max-width: 1300px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.project {
    width: 90%;
    max-width: 300px;
    height: 400px;
    padding: 1rem;
    border: 1px solid lightgray;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: white;
}
.frontend{
    background: #f65733;
}
.backend{
    background: #74cf74;
}
.java{
    background: #1ba0e0;
}
.project-image {
    width: 100%;
    height: 60%;

}
.project-image a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.project-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    width: 100%;
    height: 40%;
}
.project-info h3{
    font-family: Centaur, "Quattrocento", serif;
    font-size: 1.5rem;
    margin-bottom: 0;
}


.project-info span {
    width: 100%;
    height: 20px;

}

.project-info span svg {
    height: 20px;
    width: 20px;
    fill: white;
}


.contact-part {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.contact-part h1 {
    font-family: Centaur, "Quattrocento", serif;
}

.contact-part h2 {
    font-family: Centaur, "Quattrocento", serif;
}

.projects div h1 a {
    font-family: Centaur, "Quattrocento", serif;
    text-decoration: none;
    color: black;
    transition: 0.3s;
    position: relative;
}

.projects div h1 a:hover {
    color: darkgray;
}

.contact {

    width: 35vw;
    border: 1px solid gray;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
    gap: 10px;
}

.contact-input input {
    width: 15vw;
    height: 40px;
    border: 1px solid lightgray;
    transition: 0.5s;
}

.contact-input textarea {
    padding-top: 10px;
    width: 30.65vw;
    height: 25vw;
    border: 1px solid lightgray;
    transition: 0.5s;
}

.contact-input div {
    position: relative;
}

.contact-input div span {
    font-size: 1em;
    position: absolute;
    left: 10px;
    top: 15px;
    pointer-events: none;
    color: gray;
}

textarea:focus, input:focus, textarea:valid, input:valid {
    outline: 1px solid gray;

}

.contact-input input:valid ~ span,
.contact-input input:focus ~ span,
.contact-input textarea:valid ~ span,
.contact-input textarea:focus ~ span {
    color: black;
    transform: translateY(-22px);
    transition: 0.5s;
    font-size: 0.85em;
    padding: 0 10px;
    background-color: white;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}

.contact-input textarea:valid ~ span,
.contact-input textarea:focus ~ span {
    transform: translateY(-23px);
}

.contact-button {
    margin-top: 10px;
    height: 5vw;
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-button button {
    height: 30px;

    color: #373737;
    font-family: Centaur, "Quattrocento", serif;

    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    width: 10rem;
    border-radius: 1rem;
    border: 1px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.5s;
}

.contact-button button:hover {
    color: white;

    background-color: #73cd73;

}

footer {
    width: 100vw;
    height: 30vh;
    background-color: #323232;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-in {
    height: 100%;
    width: 80%;
    max-width: 80rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-in div svg {
    width: 5vw;
    user-select: none;
}

.footer-in div svg:nth-of-type(2) {
    width: 10vw;
}

.footer-in div .sign {
    stroke-dasharray: 2059;
    stroke-dashoffset: 2059;
    animation: animate 10s ease-in-out infinite;
}

.web {
    font-family: Centaur, "Quattrocento", serif;
    font-size: 2rem;
}

footer ul li a {
    text-decoration: none;
    color: white;
    position: relative;
}

footer ul li a:after {
    content: '';
    position: absolute;
    background-color: white;
    bottom: -2px;
    left: 50%;
    transition: 0.3s;
    height: 1px;
    width: 0%;
}

footer ul li a:hover:after {
    width: 100%;
    left: 0;
}


footer ul li {
    margin: 5px;

    padding: 0;

}

footer ul {

    list-style: none;
    color: white;
    text-align: right;
}

footer p {
    color: white;
    text-align: center;
    margin: 0;

}

footer p:nth-of-type(1) {
    margin: 20px 0 5px 0;

}

.info {
    margin-top: 30px;
}

.email {
    height: 50%;
    width: 100%;

}

.social {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.social a {
    display: grid;
    place-content: center;
    background-color: white;
    padding: 1em;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}

.social a svg {
    height: 20px;
    width: 20px;
}

.social a:nth-of-type(4)::before {

    width: 50px;
}

.social a::before {
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    padding: 0.25em 0.5em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-18.5px) rotate(25deg);
    opacity: 0;
    left: -15px;
    transition: 200ms cubic-bezier(.42, 0, 0.44, 1.68);
    text-align: center;
}

.social a:hover {
    background-color: var(--accent-color);
    fill: white;
}

.social a::after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--accent-color);
    top: 18px;
    left: 15px;
    transform: translateY(40px) rotate(0deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42, 0, 0.44, 1.68);
}

.social a:hover::before {
    transform: translateY(-37px) rotate(0deg);
    opacity: 1;
}

.social a:hover::after {
    transform: translateY(-32px) rotate(0deg);
    opacity: 1;

}


@media (max-width: 1200px) {


    .top_menu a {
        text-align: center;
    }

    .top_inside {
        width: 80%;
    }

    .cv {
        padding: 0 2rem;
    }

    .introduction_part {

        width: 100vw;
        min-height: 100vh;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: -1;
    }

    .introduction {

        width: 65rem;
        height: 30rem; /* 413px */
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 1px;
        grid-template-areas:
    "introduction_photo introduction_atlas_photo introduction_text";
        justify-content: flex-start;
        align-items: flex-start;
    }

    .introduction_photo {

        grid-area: introduction_photo;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;


    }

    .introduction_photo img {
        height: 25.8125rem; /* 413px */
        width: 25.8125rem;
        margin: 0;
    }

    .introduction_atlas_photo {
        grid-area: introduction_atlas_photo;
        height: 100%;
        margin-left: 0rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 0rem;
    }

    .introduction_atlas_photo_normal {
        width: 2.5rem;
        height: 100%;
        object-fit: contain;
        margin-top: -20px;
    }


    .introduction_text {

        height: 100%; /* 413px */
        width: 35rem;
        grid-area: introduction_text;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0;
        margin-top: 0rem;
    }

    .introduction_text p {
        width: 100%;

    }

    .line {
        padding-bottom: 0;
        margin-top: 0px;
    }

    .contact {

        width: 80vw;
        height: 80vh;
        border: 1px solid gray;
        border-radius: 10px;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .contact-input {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: 100%;
        gap: 10px;
    }

    .contact-input input {
        width: 30vw;
        height: 40px;
        border: 1px solid lightgray;
        transition: 0.5s;
    }

    .contact-input textarea {
        padding-top: 10px;
        width: 61.8vw;
        height: 50vh;
        border: 1px solid lightgray;
        transition: 0.5s;
    }
}

@media screen and (orientation: portrait) and (max-width: 992px) {
    .skill_list h2 {
        font-size: 1rem;
    }

    .icon a img {
        width: 2rem; /* 20px */
        height: 2rem; /* 20px */
        margin-left: 2rem; /* 20px */
    }

    .experience p {
        font-size: 0.5rem;
    }

    html {
        font-size: 23px;
    }

    #button {
        display: block;
    }

    #top_menu_phone {
        display: none;
    }


    #top_menu_phone {
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        background-color: white;
        border-top: 1px solid gray;
        border-radius: 10px;
        z-index: 998;
        position: fixed;
        top: 70px;
    }

    #top_menu_phone a {
        text-decoration: none;
        padding: 1rem;
        color: black;
        border-bottom: 1px solid gray;
        width: 100%;
        text-align: center;
    }

    .top_menu {

        display: none;

    }

    .top_inside {
        width: 95%;
    }

    .line {
        margin-top: -55px;

    }

    .cv_phone {
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: none;
        font-weight: normal;
        font-size: 1.5rem;
        height: 80%;
        width: 5rem;
        border-radius: 0.2rem;
        background-color: #808080;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 2.5%;
        top: 10%;
    }

    .introduction {
        width: 35rem;
        height: 60rem; /* 413px */
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-template-areas:
    "introduction_photo"
    "introduction_atlas_photo"
    "introduction_text";
        justify-content: center;
        align-items: center;
    }


    .introduction_photo {
        height: 25.8125rem; /* 413px */
        width: 100%; /* 413px */
        grid-area: introduction_photo;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 0;

    }

    .introduction_photo img {
        width: 25.8125rem;
        height: auto;
        object-fit: contain;
    }

    .introduction_atlas_photo {
        grid-area: introduction_atlas_photo;
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;

    }

    .introduction_atlas_photo_normal {
        display: none;


    }

    .introduction_atlas_photo_90deg {
        display: block;
        height: 2.5rem;
        width: auto;
    }

    .introduction_text {
        padding-left: 0rem;

        width: 100%;
        grid-area: introduction_text;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin-top: 0rem;
        text-align: center;
    }

    .introduction_text b {
        font-weight: bolder;
        font-family: arial, sans-serif;
        display: block;

    }

    .introduction_text p {
        font-size: 1.5rem; /* 20px */

    }

    .introduction_text i {
        display: none;
    }

    .introduction_text br {
        display: none;
    }

    .introduction_text h1 {
        width: 100%;
    }

    .introduction_text h1 span {
        width: 100%;
    }

    .introduction_text h1 span h1 {

    }

    .icon {
        height: 1.75rem;
        width: 100%;
        margin-top: 25px;
        display: flex;
        justify-content: center; /* float: right; */
    }

    .education {
        flex-direction: column;
    }

    .education div {
        flex-direction: row;
        gap: 1rem;
    }

    .education div:hover {

        width: 90%;
    }

    .skill > div p {
        margin: 5px;
    }

    .experience {
        overflow-y: scroll;
        gap: 10px;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-around;

    }

    .experience div {
        max-width: none;
        height: auto;
    }



    .project {

        height: auto;

    }




    .contact {

        width: 70vw;
        height: 70vh;
        border: 1px solid gray;
        border-radius: 10px;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .contact-input {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: 100%;
        gap: 10px;
    }

    .contact-input input {
        width: 30vw;
        height: 40px;
        border: 1px solid lightgray;
        transition: 0.5s;
    }

    .contact-input textarea {
        padding-top: 10px;
        width: 61.8vw;
        height: 50vh;
        border: 1px solid lightgray;
        transition: 0.5s;
    }


}

