@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
}

#canvas1
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body
{
    background-image: url("backg.jpg");
    background-size:cover;
    background-attachment: fixed;
    color: white;
    font-family: 'Poppins', sans-serif;
    /* font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 60vw; */
    /* margin: 0 auto; */
    padding: 1rem 0;
}

.brand {
    font-size: 2rem;
    font-weight: bold;
}

.git {
    font-size: 1rem;
    /* font-weight: bold; */
    background-color: rgb(73, 73, 73);
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.git a {
    color: white;
    text-decoration: none;
}


.container
{
    /* display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0); */
    width: 60vw;
    text-align: center;
    margin: 0 auto;
    /* padding: auto; */
}

/* .content {
    height: calc(100vh - 80px - 50px);
} */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: column; */
    padding: 0.5rem 0;
    /* height: calc(100vh - 400px); */
    /* min-height: 300px; */
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    width: 50%;
}

.note-text {
    font-size: 0.8rem;
}

.note-text ul {
    list-style: none;
}

.list {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
}

.list_item
{
    width: 100%;
    padding: 10px;
    background: white;
    background: #303136;
    background: #7f8082;
    color: white;
    margin: 10px auto;
    transition: box-shadow 0.2s, background 0.2s;
    text-decoration: none;
}
.list_item:hover
{
    box-shadow: 0 20px 38px rgba(0,0,0,0.30), 0 15px 10px rgba(0,0,0,0.22);
    background: #666668;
}

.footer {
    padding: 1rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.ftr-author a{
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .container {
        width: 90vw;
    }

    .brand {
        font-size: 1rem;
    }

    .git {
        font-size: 0.5rem;
    }

    .header {
        flex-direction: column;
        justify-content: flex-start;
        /* height: calc(100vh - 500px); */
    }

    .title {
        font-size: 1.5rem;
    }

    .list_item {
        width: 95%;
        padding: 5px;
    }

    .footer {
        font-size: 0.5rem;
    }

    .note-text {
        font-size: 0.7rem;
    }

    /* .content {
        height: calc(100vh - 60px - 44px);
    } */
}