@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300;400&family=Montserrat:wght@300;400&family=Noto+Sans:wght@300;400;500;600;700&family=Open+Sans&family=Roboto&family=Roboto+Mono:ital,wght@0,300;0,400;0,600;0,700;1,500&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
:root
{
    --main-color: #FA5F55;
    --shadow-color: #ff3729;
    --border-color: #2a2a2a;
}
body
{
    /* background: #121212; */
    background-color: rgb(12, 12, 12);
}
/* HEADER */
header
{
    display: flex;
    justify-content: center;
}
    .triangle 
    {
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 120px solid rgb(14, 14, 14);
        position: absolute;
        transform: rotate(0deg);
        z-index: -1;
        filter: drop-shadow(0.005rem 0.005rem 0.1rem var(--shadow-color));
        position: fixed;
    }
    .about
    {
        display: flex;
        margin: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
        /* margin: 1rem; */
    }
        .about h1
        {
            font-family: 'Roboto Mono', monospace;
            font-size: 80px;
            letter-spacing: 0.1rem;
            display: grid;
            color: rgb(22, 22, 22);
        }
            .about h1 > *, .about h1::after
            {
                grid-area: text;
            }
            .about h1::after
            {
                content: attr(data-text);
                transform: translate(0.55rem, 0.55rem);
                filter: drop-shadow(0.015rem 0.015rem 0.3rem var(--shadow-color));
                -webkit-background-clip: text;
                color: transparent;
                background-image: linear-gradient(#ff6155, var(--main-color));
            }
        .profile-picture-content
        {
            border: 1px solid var(--border-color);
            border-radius: 80px;
            max-width: 370px;
            max-height: 370px;
        }
            .profile-picture
            {
                max-width: 320px;
                max-height: 320px;
                box-shadow: 
                0 0 10px 20px #0707075d;
                border: 1px solid var(--border-color);
                margin: 1.5rem;
                border-radius: 50px;
            }
            .about-info
            {
                margin-left: 1rem;
            }
                .about-info p
                {
                    font-family: 'Montserrat', sans-serif;
                    font-size: 35px;
                    color: white;
                    filter: drop-shadow(0rem 0rem 0.1rem var(--main-color));
                }
                    .about-info p b
                    {
                        color: var(--main-color);
                    }
                        .about-info p b:hover
                        {
                            text-decoration: underline;
                        }
                .b-description
                {
                    position: absolute;
                    display: none;
                    background-color: rgb(21, 21, 21);
                    max-width: 400px;
                    max-height: 100px;
                    padding: 0.5rem;
                    border-radius: 10px;
                    z-index: 1;
                    filter: drop-shadow(0.015rem 0.015rem 0.3rem #ffffff);
                }
                    .b-description p
                    {
                        color: var(--main-color);
                        font-size: 20px;
                        font-family: 'Montserrat', sans-serif;
                    }
                    .point
                    {
                        height: 8px;
                        width: 8px;
                        background-color: white;
                        border-radius: 50%;
                        filter: drop-shadow(0rem 0rem 0.01rem var(--main-color));
                        display: inline-block;
                        transform: translateY(-0.3rem);
                    }
                .socials
                {
                    margin-top: 0.3125rem;
                }
                    .socials a
                    {
                        font-size: 80px;
                        color: var(--main-color);
                        filter: drop-shadow(0.015rem 0.015rem 0.3rem var(--shadow-color));
                        margin-right: 1.375rem;
                    }
                    .socials a:hover
                    {
                        color: #ffa49e;
                        filter: drop-shadow(0.015rem 0.015rem 0.3rem #ffa49e);
                    }
/* MAIN */
main
{
    text-align: center;
    color: white;
    font-family: 'Roboto Mono', monospace;
}
    main div
    {
        margin-top: 0.5rem;
    }
    main h2
    {
        font-size: 30px;
    }
        .information a
        {
            color: var(--main-color);
        }
            .information a:hover
            {
                text-decoration: underline;
            }
        .articles a
        {
            color: var(--main-color);
        }
            .articles a:hover
            {
                text-decoration: underline;
            }
    .title
    {
        display: flex;
        justify-content: center;
    }
        .hr
        {
            border-bottom: 1px solid var(--border-color);
        }
            .hr h1
            {
                font-size: 50px;
                filter: drop-shadow(0.015rem 0.015rem 0.3rem var(--shadow-color));
                color: var(--main-color);
                margin-bottom: 0.4rem;
            }
            .break {
                flex-basis: 100%;
                height: 0;
              }
    .projects
    {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
        .project
        {
            flex: 0 1 350px;
            height: 500px;
            margin: 2rem;
            background-color: rgb(10, 10, 10);
            border-radius: 15px;
            box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4); 
            transition: 0.3s;
            border: 2px solid var(--border-color);
            filter: grayscale(1);
        }
        .animeproject
        {
            border: 2px solid #69107d !important;
        }
            .projectContent
            {
                height: 100%;
            }
            .project a
            {
                color: white !important;
            }
            .project img
            {
                margin-top: 5rem;
                /* margin-bottom: 0.5rem; */
            }
            .anime
            {
                filter: drop-shadow(0.005rem 0.005rem 0.2rem #69107d);
            }
        .project-big
        {
            /* flex: 1 1 400px; */
            flex: 0 1 1000px;
            height: 500px;
            margin: 2rem;
            background-color: rgb(10, 10, 10);
            border-radius: 15px;
            box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4); 
            transition: 0.3s;
            /* border: 2px solid var(--border-color); */
            filter: grayscale(1);
            justify-content: space-between;
            /* text-align: left; */
            display: flex;
        }
            .mark
            {
                margin-top: 6rem;
                margin-bottom: 2rem;
                color: var(--main-color);
                font-size: 150px;
                filter: drop-shadow(0.015rem 0.015rem 0.3rem var(--shadow-color));
            }
            .project:hover
            {
                box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.6); 
                scale: 1.01;
                border: 2px solid var(--main-color);
                filter: grayscale(0);
            }
    .accomplishments
    {
        max-width: 685px;
        display: block;
        margin: auto;
        margin-bottom: 5rem;
    }
        .accomplishments h2
        {
            margin-bottom: 15px;
        }
        .accomplishment
        {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: left;
        }
            .first
            {
                color: #FFD700;
            }
            .second
            {
                color: 	#C0C0C0;
            }
            .third
            {
                color: #CD7F32;
            }
            .language
            {
                /* color: #7c009b; */
                color: var(--border-color);
                font-size: 14px;
            }
/* FOOTER */
footer
{
    width: 100%;
    border-top: 1px solid var(--border-color);
    background-color: #0707075d;
}
    footer p
    {
        margin: 1rem;
        color: #4f4f4f;
        text-align: center;
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
    }
        footer p span
        {
            color: #626262;
        }