html {
    padding: 0px;
    margin: 0px;

    background-image: url(/images/fractalize-clear_lagoon-background.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;


    width: 100%;
    height: 100%;

    font-family: 'Roboto Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;


    overflow: hidden;
}


body {
    padding: 0px;
    margin: 0px;
    
    width: 100%;
    height: 100%;
}


#nav-bar {
    transition: 0.2s;

    display: flex;
    width: auto;
    height: 70px;

    background-color: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;


    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    padding-left: 20px;

    justify-content: left;
    align-items: center;
}


#nav-bar:hover {
    transition: 0.2s;

    background-color: rgba(255, 255, 255, 0.3);
}



#nav-title {
    width: 200px;
}


.nav-link {
    color: #001b23;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;

    transition: 0.1s;

    margin-right: 15px;
    text-decoration: none;
}

.nav-link:hover {
    margin-top: 4px;

    color: rgb(0, 0, 0);
    
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
}


#projects-list-div {
    transition: 0.2s;

    margin-top: 30px;
    padding-top: 5px;
    
    width: 270px;
    height: 40%;

    display: flex;


    background-color: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;

    box-shadow: 4px 10px 15px rgba(0, 0, 0, 0.2);


    justify-self: center;
    align-self: center;

    flex-direction: column;
    align-items: center;
}


#projects-list-div:hover {
    transition: 0.2s;

    background-color: rgba(255, 255, 255, 0.3);
}


#projects-list {
    display: flex;

    height: 100%;
    width: 100%;

    padding-top: 20px;

    flex-direction: column;
    align-items: left;

    justify-content: top;
    
    overflow-y: scroll;

}


.project-list-link {
    color: rgb(0, 0, 0);


    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    

    margin-left: 20px;
    margin-right: 20px;

    margin-bottom: 10px;

    text-decoration: none;

    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.1);

    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}


.project-list-link:hover {
    color: rgb(0, 0, 0);

    background-color: rgba(255, 255, 255, 0.7);
}


p {
    margin: 10px;
}

h1 {
    color: rgb(0, 0, 0);
    font-style: bold;
}



