body {
    margin: 0 auto;
    background: #f3efef;
    font-family: Arial, Helvetica, sans-serif;
    color: #3a3636;
}

html {
    scroll-behavior: smooth;
    cursor: url(/assets/cursor.svg?v=2), auto;
    /*
    cursor: url(assets/cursor.svg), auto; */

}

a,
button,
li {
    cursor: url(assets/cursor_hover.svg), pointer;
}

input,
textarea {
    cursor: url(assets/cursor.svg), text;
}

img {
    width: auto;
    height: 100%;
    -webkit-user-drag: none;
}

video {
    width: auto;
    height: 100%;
}

/* header */

header {
    display: flex;
    max-width: 100vw;
    justify-content: space-between;
    margin: 2vw 5vw;
    border-bottom: solid 1px rgba(0, 0, 0, 0.225);
    align-items: center;
}

.footer {
    display: flex;
    max-width: 70vw;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    margin-top: 10vh;
    padding-top: 5vh;
    border-top: solid 1px rgba(0, 0, 0, 0.225);
    padding-bottom: 10vh;
}

footer {
    margin: 0;
}

/* logo anim */

svg {
    max-width: 75px;
    width: 50%;
    height: auto;
}

.cls-1 {
    fill: none;
    stroke: #3a3636;
    stroke-linecap: round;
    stroke-linejoin: miter;
    stroke-width: 22px;
}

#path1 {
    stroke-dasharray: 500;
    stroke-dashoffset: 1500;
    animation: draw 2s ease-in-out forwards;
}

#path2 {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw 0.4s ease-in-out 1.9s forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
        stroke-dasharray: 1500;
    }
}

.leftpart {
    display: flex;
    width: 25vw;
    align-items: center;
}

.rightpart {
    display: flex;
}

/* links */

a {
    text-decoration: none;
    color: #3a3636;
    letter-spacing: 0.1rem;
}

li {
    margin: 0rem 1rem;
    list-style: none;
    position: relative;
    cursor: pointer;
}

li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.225);
    transition: width 400ms ease-in-out;
}

li:hover::after {
    width: 100%;
}

/* body */

.body-container {
    width: 65vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    height: 50vh;
    padding-top: 5vh;
    align-items: center;
}

.body-container .left {
    width: 20vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 3rem;
}

.body-container .right {
    width: 35vw;
    height: 35vh;
}

p {
    line-height: 1.8rem;
}

/* page index */

/* page school work */

.work {
    margin: auto;
}

.work video {
    width: 60vw;
    margin: 0 auto;
}

/* page personal work */

.work {
    margin: auto;
}

.videocontainer {
    width: 80vw;
    margin: 0 auto;
}

.work video {
    width: 20vw;
}

.videxp {
    display: flex;
    width: 55vw;
    margin-bottom: 5vh;
}

.videxps {
    display: flex;
    width: 55vw;
}

.videxps video {
    width: 10vw;
}

.videxp p {
    width: 50vw;
    margin-left: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}

.videxps p {
    width: 50vw;
    margin-left: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}

.videxptext {
    display: flex;
    flex-direction: column-reverse;
    width: 70vw;
}

.videxptext h5 {
    width: 50vw;
    margin-left: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0;
    color: #3a363655;
    font-weight: 400;
    padding: 0%;
}

@media (max-width: 700px) {

    .index .body-container {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 85vw;
    }

    .index .body-container img {
        width: 20vh;
    }

    .index .body-container .right {
        width: 70vw;
        height: auto;
    }

    .videxptext {
        display: flex;
        flex-direction: column-reverse;
        width: 70vw;
    }

    .videxptext h5 {
        margin-left: 0;
        margin-top: 0;
    }

    .videxp {
        width: 70vw;
        display: block;
    }

    h2 {
        margin-bottom: 0;
    }

    h4 {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    h5 {
        width: 80vh;
    }

    .videxp p {
        margin-left: 0;
        width: 70vw;
    }

    .videxp video {
        margin-top: 6vh;
        margin-bottom: 3vh;
        width: inherit;
    }
}