*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    font-family:'Urbanist', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: radial-gradient(#1b2629, #111);
    color: #fff;
}

/*disable link*/

.backlog {
    pointer-events: none;
    opacity: .5;
    cursor: not-allowed;
    text-decoration: none;
}

/*nav*/

nav {
    position: fixed;
    top: 5%;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 2rem 0 2rem;
    list-style-type: none;
    animation: nav-animation 1s;
}

.nav-item {
    padding: .4rem;
    border-radius: 15px;
    color: #b6ffde;
}

nav a:hover {
    color: #e9fff5;
    transform: none;
    scale: 1.1;
    transition: .3s;
}

nav a.active {
    background: #202d27;
    color: #fff;
}

@media (max-width: 600px) {
    .nav-menu {
        font-size: 14px;
        gap: .5rem;
    }
}

@media (max-width: 400px) {
    .nav-menu {
        font-size: 12px;
        gap: .4rem;
    }
}

@media (min-width: 768px) {
    .nav-menu {
        gap: 3rem;
    }
}

@keyframes nav-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*index.html*/

.title {
    margin: 2rem 0 2rem 0;
    text-align: center;
    font-size: 2.5rem;
    animation: main-page-fadeIn .8s ease-in-out;
}

.subtitle {
    margin: 5px 0 5px 0;
    text-align: center;
    font-size: .75rem;
    color: #44606a;
    animation: main-page-fadeIn .8s ease-in-out;
}

.github-wrapper{
    animation: main-page-fadeIn .8s ease-in-out;
}

.fa-brands.fa-github {
    margin: 1rem 0 0 0;
    font-size: 1.5rem;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin: 1rem 0 0 0;
    animation: main-page-fadeIn .8s ease-in-out;
}

a {
    display: block;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

a:hover {
    transform: translateY(-6px);
}

.content a {
    padding: .5rem;
    text-align: center;
    outline: 1px solid;
    border-radius: 8px;
}

.github-wrapper:hover {
    color: #cefeff;
}

.fa-brands.fa-github:hover {
    color: #cefeff;
}

.about-hover:hover {
    color: #c4ffd0;
}

.projects-hover:hover {
    color: #b7f3ff;
}

.dependencies-hover:hover {
    color: #9ff1dd;
}

.archive-hover:hover {
    color: #bef8ab;
}

.others-hover:hover {
    color: #c2d3b2;
}

@keyframes main-page-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*about.html*/

.about-container {
    padding: 2rem;
    width: 85%;
    line-height: 1.7;
    outline: 1px solid #bbfcd5;
    animation: about-animation .8s ease-in-out;
}

@media (max-width: 400px) {
    .about-container {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .about-container {
        width: 60%;
    }
}

@media (min-width: 1024px) {
    .about-container {
        width: 50%;
    }
}

@media (min-width: 1440px) {
    .about-container {
        width: 40%;
    }
}

@keyframes about-animation {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
    }
}

/*projects.html*/

.projects-title {
    margin: 0 0 2rem 0;
    font-size: 1.5rem;
    text-decoration: underline;
    animation: projects-animation .8s ease-in-out;
}

.projects-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    animation: projects-animation .8s ease-in-out;
}

.projects-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3em;
    outline: 1px inset #d0eed9;
}

@media (max-width: 375px) {
    .projects-container {
        gap: 1rem;
    }
}

@keyframes projects-animation {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
    }
}

/*dependencies.html*/

.dependencies-title {
    margin: 2.5rem 0 2.5rem 0;
    font-size: 1.5rem;
    text-decoration: underline;
    animation: dependencies-animation .8s ease-in-out;
}

.dependencies-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    width: 60%;
}

.dependencies {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 1px #8393a2;
    animation: dependencies-animation .8s ease-in-out;
}

.category {
    margin: 1rem 0 .1rem 0;
    font-size: 1rem;
}

.dependencies-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .9rem 0 1rem 0;
    font-size: .9rem;
}

.dependencies-item ul {
    list-style-type: none;
}

.dependencies-item ul li {
    margin: .2rem 0 .2rem 0;
}

@media (min-width: 600px) {
    .dependencies-container {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .dependencies-container {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    .dependencies-container {
        width: 23%;
    }
}

@keyframes dependencies-animation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
    }
    
}

/* --> archive.css

*/
