@font-face {
    font-family: 'Courier Prime Regular';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/CourierPrime-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Courier Prime Bold';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/CourierPrime-Bold.woff2') format('woff2');
}
html{
    display: block;
    max-width: 2100px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
        display: none;
    }
}
body{
    display: flex;
    font-family: "Courier Prime Regular", monospace;
    font-weight: 400;
    font-style: normal;
    flex-wrap: wrap;
    background-color: #000 !important;
}
.left-panel{
    flex-basis: 20%;
    background-color: #000;
    height: 100vh;
    min-height: 100vh;
    min-width: 250px;
    max-width: 400px;
    border-right: 2px outset #fff4;
    justify-items: center;
    position: relative;
    &::before{
        content: '';
        position: absolute;
        top: 0px;
        right: -5px;
        background-color: #000;
        width: 10px;
        height: 300px;
    }
    &::after{
        content: '';
        position: absolute;
        top: 298px;
        right: -25px;
        background-color: #fff4;
        width: 50px;
        height: 2px;
    }
    .photo-container{
        width: 200px;
        height: 200px;
        margin-top: 50px;
        clip-path: circle(50%);
        .profile{
            height: 100%;
        }
    }
    .name-container{
        margin-top: 20px;
        color: #fffa;
        font-weight: 700;
    }
    .title{
        color: #fff6;
        font-style: italic;
    }
    .about{
        margin: auto 20px;
        color: #fff8;
    }
    .education, .contact{
        width: calc(100% - 40px);
        color: #fffb;
        margin-top: 40px;
        h3{
            position: relative;
            width: fit-content;
            cursor: pointer;
            margin-bottom: 20px;
        }
    }
    .footer-pc{
        position: relative;
        bottom: 0px;
        color: #fff9;
        width: calc(100% - 40px);
    }
}
.border-bottom-animation{
    &::after{
        content: "";
        background: #fff;
        position: absolute;
        transition: all ease 400ms;
        bottom:-10px;
        left: 50%;
        transform: translateX(-50%);
        width: 25%;
        height: 2px;
    }
    &:hover{
        &::after{
            content: "";
            background: #fff;
            position: absolute;
            bottom: -10px;
            left: 0px;
            transform: none;
            width: 100%;
            height: 2px;
        }
    }
}
.right-panel{
    flex-basis: 80%;
    background: #000;
    height: 100vh;
    padding-left: 20px;
    .header-class{
        display: flex;
        justify-content: space-around;
        position: relative;
        flex-wrap: wrap;
        
    }
    .body-class{
        display: flex;
        margin-top: 270px;
        flex-wrap: wrap;
        .experience-container{
            .experience-title{
                width: fit-content;
                color: #fff9;
                font-weight: 700;
                position: relative;
                height: fit-content;
                cursor: pointer;
                margin: 0 auto;
            }
            flex-basis: 50%;
            max-height: calc( 100vh - 270px );
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            &::-webkit-scrollbar {
                display: none;
            }
            .experience-lists{
                .intro-section{
                    width: fit-content;
                    margin-left: 20px;
                }
                .achievements li{
                    font-size: 0.9em;
                }
                margin: 50px auto 0px auto;
                color: #fff9;
            }
        }
        .projects-container{
            .projects-title{
                width: fit-content;
                margin: 0 auto;
                color: #fff9;
                font-weight: 700;
                position: relative;
                height: fit-content;
                cursor: pointer;
            }
            flex-basis: 50%;
            padding-bottom: 20px;
            max-height: calc( 100vh - 270px );
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            &::-webkit-scrollbar {
                display: none;
            }
            .projects-list{
                margin-top: 50px;
                .project-individual-title{
                    text-align: center;
                    color: #fff8;
                }
                .image{
                    width: fit-content;
                    margin: 20px auto 0 auto;
                    display: flex;
                    align-items: center;
                    .project-image{
                        max-width: 100%;
                        margin: 0 auto;
                    }
                }
                .project-description{
                    color: #fff8;
                    margin: 20px auto 10px auto;
                    width: 50%;
                }
                .visit-link{
                    margin: 0 auto;
                    width: fit-content;
                    display: block;
                    text-decoration: none;
                    color: #fff8;
                    &:hover{
                        color: #0008;
                        background-color: #fff8;
                    }
                }
            }
        }
    }
}
.footer{
    margin-top: 50px;
    margin-bottom: 20px;
    flex-basis: 100%;
    .copyright{
        text-align: center;
        color: #fff9;
        font-size: 1em;
    }
}
@media (max-width: 1265px){
    body{
        .left-panel{
            flex-basis: 100% !important;
            max-width: 100vw;
            max-height: auto;
            overflow-y: hidden;
            overflow-x: hidden;
            &::after{
                display: none;
            }
            .education, .contact{
                justify-items: center;
            }
            .footer-pc{
                display: none;
            }
        }
        .right-panel{
            flex-basis: 100% !important;
            height: auto;
            .body-class{
                margin-top: 50px;
                .experience-container{
                    flex-basis: 100% !important;
                    margin-left: 10px;
                    margin-right: 10px;
                    max-height: none !important;
                }
                .projects-container{
                    flex-basis: 100% !important;
                    margin-top: 50px;
                    max-height: none !important;
                    margin-left: 10px;
                    margin-right: 10px;
                    .projects-list{
                        .image{
                            .project-image{
                                max-width: calc(100% - 30px);
                            }
                        }
                        .project-description{
                            margin-top: 30px;
                            width: calc(100% - 30px);
                        }
                    }
                }
            }
        }
        .footer{
            display: block;
            color: #fff8;
        }
    }
}