.navbar .nav-link{
    text-transform: uppercase;
    font-weight: 600;
}

ul {
    list-style: none;
}

.profile-image {
    width: 150px;
    /*border-radius: 50%;*/
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}

.division {
    width: 100%;
    height: 1px;
    background-color: var(--tblr-border-color);
    margin: 1rem 0 3rem 0;
}

.project .project-bio p {
    font-size: 0.9rem;
    font-weight: 500;
}

.project .project-bio h2 {
    font-size: 1rem;
}

.project .project-bio h3 {
    font-size: 0.9rem;
}

.project-info {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*opacity: 0;*/
    /*color: #222222;*/
    /*position: relative;*/
    transition: 0.5s ease-in-out;
    padding: 60px 20px;
}

.project-bio {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: flex-end;*/
    /*position: relative;*/
    /*top: 160px;*/
    /*left: 10px;*/
}

/* Header Container */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 1rem;
}

.header-container > div {
    margin-top: 1rem;
}


.content-text {
    text-align: center;
    margin: 1.5rem 0;
}

.content-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    transition: 0.2s ease-in-out;
}

.content-text p {
    padding: 0.5rem;
    margin: 0 auto;
    max-width: 700px;
}

.content-text2 {
    text-align: center;
    margin: 1.1rem 0;
}

.content-text2 h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    transition: 0.2s ease-in-out;
}

.content-text2 p {
    padding: 0.2rem;
    margin: 0 auto;
    max-width: 700px;
}

/* Project cards */
.project {
    padding: 1rem;
    /*background: var(--card-background);*/
    color: #ffffff;
    border-radius: 5px;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    border-width: 0;
}

.project a {
    color: #f2f2f2;
    transition: 0.25s ease-in-out;
    font-size: 1.1rem;
    margin-right: 0.3rem;
}

.project a:hover {
    /*color: var(--primary-color);*/
}

.project:hover {
    box-shadow: inset 0 100px 1000px 10px rgba(0, 0, 0, 0.5);
}

.project:hover .project-info {
    opacity: 1;
}


/* Lists */
#lists {
    margin: 2rem auto 5rem;
}

.card .list-bio h2 {
    font-size: 1rem;
}

.card .list-bio h3 {
    font-size: 0.84rem;
}

.card .list-bio p {
    font-size: 0.84rem;
    font-weight: 500;
}
