:root {
    --background: #151a16;
    --background2: #2a2f2b;
    --text: #ffff;

    font-family: FunkFont;
    overflow-x: hidden;
}



/*Fonts*/

@font-face {
    font-family: FunkFont;
    src: url(../Fonts/lt_funk/LT\ Funk.otf);
}

/* For Phone View */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    p,
    #discord {
        font-size: 15px;
    }

    #nameDiv p {
        font-size: 20px;
    }

    #nameDiv img {
        width: 200px;
    }

    #projectsDiv a {
        width: 60%;
        padding: 10px;
    }

    #projectsDiv a p {
        margin: 0;
        font-size: 20px;
        margin-top: 1em;
    }

    #projectsDiv a img,
    #linksUl li a img {
        width: 80px;
    }

    #discord img {
        width: 30px;
    }

    footer {
        flex-wrap: wrap;
        margin: 0;
        margin-top: 5em;
        gap: 20px;
    }

    footer p,
    footer a {
        font-size: 20px;
        width: 100%;

        span {
            font-size: 15px;
        }
    }
}

/* For Tablet View */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    h1 {
        font-size: 70px;
    }

    h2 {
        font-size: 60px;
    }

    p,
    #discord {
        font-size: 20px;
    }

    #nameDiv p {
        font-size: 30px;
    }

    #nameDiv img {
        width: 120px;
    }

    #projectsDiv a {
        width: 35%;
        padding: 20px;
    }

    #projectsDiv a p {
        margin: 0;
        font-size: 2em;
        margin-top: 2em;
    }

    #projectsDiv a img,
    #linksUl li a img {
        width: 150px;
    }

    #discord img {
        width: 50px;
    }

    footer {
        margin: 0;
        margin-top: 8em;
    }

    footer p,
    footer a {
        padding-left: 2px;
        font-size: 28px;
        width: 25%;

        span {
            font-size: 23px;
        }
    }
}

/* For Desktop View */
@media screen and (min-width: 1024px) {
    h1 {
        font-size: 60px;
        line-height: 50px;
    }

    h2 {
        font-size: 50px;
    }

    p,
    #discord,
    #nameDiv p {
        font-size: 20px;
    }

    #nameDiv img {
        width: 100px;
    }

    #projectsDiv a {
        width: 25%;
        padding: 20px;
    }

    #projectsDiv a p {
        margin: 0;
        font-size: 1.5em;
        margin-top: 2em;
    }

    #projectsDiv a img,
    #linksUl li a img {
        width: 150px;
    }

    #discord img {
        width: 50px;
    }

    footer {
        margin: 0;
        margin-top: 12em;
    }

    footer p,
    footer a {
        font-size: 20px;
        width: 25%;

        span {
            font-size: 15px;
        }
    }

}

/*Default*/
body {
    margin: 0;
    background-color: #151a16;
    width: 100%;
    color: var(--text);
}

h1 {
    text-align: center;
    padding-top: 25px;
    margin: 0;
    letter-spacing: 3px;
}

h2 {
    padding-top: 25px;
    text-align: center;
}

a {
    color: var(--text);
}

.center {
    text-align: center;
    line-height: 28px;
}

#nameDiv {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    justify-content: center;
}

#nameDiv img {
    height: auto;
}

#projectsDiv {
    padding: 0;
    flex-wrap: wrap;
    display: flex;
    width: 90%;
    justify-content: center;
    gap: 50px;
    padding: 0 5%;
}

#projectsDiv a {
    border-radius: 5px;
    background-color: #2a2f2b;
    transition: 0.2s;
    text-align: center;
    display: block;
}

#projectsDiv a:hover {
    scale: 120%;
}

#linksUl {
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
    column-gap: 3%;
    justify-content: center;
    align-items: center;
}

#linksUl li a img {
    border-radius: 10%;
    filter: sepia(100%) hue-rotate(90deg) saturate(100%) brightness(75%);
    transition: 0.2s;
}

#linksUl li a img:hover {
    transition: 0.3s;
    border-radius: 30%;
    scale: 120%;
    filter: sepia(100%) hue-rotate(90deg) saturate(100%) brightness(120%);
}

#contactsDiv {
    padding: 0;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 50px;
}

#discord {
    background-color: #7289da;
    text-decoration: none;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 20px;
    padding: 2px 10px;
    align-items: center;
    display: flex;
    gap: 10px;
}

#discord p {
    color: #ffff;
}

#discord img {
    height: auto;
}

#discord:hover img {
    transition: 800ms;
    transform: rotate(360deg);
}


footer {
    margin-top: 2em;
    display: flex;
    background-color: var(--background2);
    padding: 10px;
    justify-content: space-around;
}

footer p,
footer a {
    margin: auto;
    text-align: center;
}

#wip {
    margin-top: 5px !important;
    color: grey;
}