body {
    background-color: rgb(10, 10, 20);
}

    body::before {
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        filter: blur(10px);
        transform: scale(1.05);
        z-index: -1;
    }

h1 {
    color: aliceblue;
    font-family: Arial, sans-serif;


}

p {
    color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h2 {

}

#welcoming {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
    color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

ul {
    color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 2rem;

    color: aliceblue;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;

    font-size: large;
}

.project-cards {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    font-size: large;
}

.nav-links a {
    text-decoration: none;
}

.project-cards a {
    text-decoration: none;
}

#underconstruction {
    text-align: center;
}

#home-nav {
    color: rgb(144, 148, 153);
}

#projects-cards-container {
    display: flex;
    
    background-color: rgba(0,0,0, 0.15);
    backdrop-filter: blur(15px);

    width: 95%;
    min-height: 10vh;
    aspect-ratio: 1 / 0.5;

    border: 2px solid rgba(255, 255, 255, .1);
    border-radius: 1vh;
    
    box-sizing: border-box;
    overflow: hidden;

    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 1rem;

    margin: 0 auto;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: rgba(0,0,0, .5);
    width: 180px;
    aspect-ratio: 1 / 1.5;
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;

    overflow: hidden;
}

    .project-card p {
        margin: 4px;
        text-align: center;
        position: absolute;
        top: 25%;
        z-index: 2;
    }

.project-card h2 {
    margin: 4px ;
    text-align: center;
    position: absolute;
    top: 12%;

    z-index: 2;
}

.project-card-img {
    
    max-height: 100%;
    display: block;
    top: 20%;

    filter: blur(2px);

    z-index: 1;
}