body {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    background-color: var(--white)!important;
    background-image: none;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 300;
    color: var(--black);
}

main {
    width: 100%;
    max-width: unset;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

h2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    font-size: 2.5em;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;   
}
h2 i {
    font-size: 1.5em;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;   
}

.intro {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background-color: var(--white-grey);
}

.intro .options {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.intro .options .link {
    all: unset;
    cursor: pointer;
}
.intro .options .link i {
    font-size: 1.5rem;
    color: var(--dark);
}

.intro .options .link i:hover {
    color: var(--primary-color);
}

.intro .options .dropdown-link {
    position: relative;
}

.intro .options .dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: var(--grey-lighter);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    cursor: default;
    display: none;
}

.intro .options .dropdown .link-lang {
    all: unset;
    cursor: default;
    padding: 5px 15px 5px 15px;
    border-radius: 12px;
    background-color: transparent;
    text-align: center;
}

.intro .options .dropdown .link-lang:hover {
    color: var(--white);
    background-color: var(--primary-color);
} 

.intro .motto {
    padding: 100px 50px 100px 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.intro .motto h1 {
    font-size: 6rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;    
}
.intro .motto p {
    font-size: 1.5rem;
    line-height: 1.8;
}
.intro .motto img {
    object-fit: cover;
    object-position: center;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    box-shadow: var(--box-shadow);
    border: 4px solid var(--secondary-color);
}

@media screen and (min-width:1500px) {
    .intro .motto {
        padding-top: 200px;
    }
    .intro .motto img {
        width: 700px;
        height: 700px;
    }
}

@media screen and (max-width:600px) {
    .intro .motto {
        padding-top: 25px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .intro .motto h1 {
        font-size: 4rem;
    }
    .intro .motto img {
        width: 300px;
        height: 300px;
    }
}

.personality {
    position: relative;
    padding: 70px 15px 70px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.personality .carousel-container {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    z-index: 999;
}

.personality  .text-slide{
    width: 100%;
    display: flex;
}

.personality p {
    margin: auto;
    min-width: 100%;
    padding: 1rem;
    font-size: 2.8rem;
    font-weight: 200;
    text-align: center;
    color: var(--grey);
    letter-spacing: 5px;
    
}

@media screen and (max-width:600px) {
    .personality p  {
        font-size: 2.5rem;
    }
    .personality p.smaller {
        font-size: 1.9rem;
    }

    .personality img {
        width: 130px;
    }
}

.skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white-grey);
    padding: 150px 5px 0px 5px;
}

.path {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
}

.path .dot-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.path .dot {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: var(--secondary-color);
}

.path .dot-dotted {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 4px dotted var(--secondary-color);
}

.path .line {
    width: 25px;
    height: 0px;
    border: 2px solid var(--primary-color);
}

.path .line.dashed {
    border-style: dashed;
}

.path .spacer {
    width: 0px;
    height: 80px;
    border: 2px solid var(--primary-color);
    margin-left: 10px;
}

.path .spacer.shorter {
    height: 40px;
}

.path .dotted {
    width: 0px;
    height: 50px;
    border: 2px dashed var(--primary-color);
    margin-left: 10px;
}

.path .dotted.shorter {
    height: 10px;
}

.path .box {
    padding: 5px;
    background-color: var(--white);
    border-radius: 7px;
    color: var(--grey-darker);
}

.path img {
    width: 100%;
    max-width: 300px;
    align-self: center;
}

@media screen and (max-width:500px) {
    .path .box {
        font-size: 0.8rem;
}
}

.works {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex-wrap: wrap;
    max-width: 1300px;
    gap: 20px;
    padding: 100px 10px 50px 10px;
}

.work {
    width: 100%;
    min-width: 200px;
    max-width: 580px;
    border-radius: 10px;
    background-color: var(--grey-lighter);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    cursor: default;
    transition: 1s;
}

.work:hover {
    transform: scale(1.02);
}

.work img {
    width: 100%;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.work.police img {
    margin-top: 30px;
}

.work.managetik img {
    margin-top: 30px;
}

.work.banana img {
    margin-top: 30px;
}

.work.app img {
    width: auto;
    height: 300px;
    margin: auto;
}

.work.portrait img {
    width: 150px;
    margin: auto;
}

.work.app ul {
    margin-top: 50px;
    margin-left: 20px;
}

.work.app ul li {
    line-height: 2.5;
}

.work h3 {
    all: unset;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black); 
    transition: 0.5s;
}

.work.mikrotik h3 {
    margin-top: 50px;
}

.work.fitness h3 {
    margin-top: 50px;
}

.work p, .work li {
    color: var(--grey-darker);
    font-weight: 200;
    font-size: 0.9rem;
    line-height: 1.5;
}

.work.banana p {
    margin-top: 10px;
}

.backend {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white-grey);
    padding: 100px 25px 40px 25px;
    gap: 30px;
}

.backend p {
    max-width: 1000px;
    margin: auto;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--grey-darker);
}

.backend img {
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.backend .links {
    margin-bottom: -49px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.backend .link-switch {
    all: unset;
    cursor: pointer;
    padding: 8px 10px 8px 10px;
    background-color: var(--white);
    transition: 0.2s;
}

.backend .link-switch:hover {
    background-color: var(--primary-color);
    color: white;
}

.backend .link-switch.active {
    background-color: var(--primary-color);
    color: white;
}

.backend .link-switch.left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.backend .link-switch.right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home-copyright {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px 5px 15px;
}