:root{
    --mainTxtColor: rgb(0, 0, 0);
    --thumbTxtColor: rgb(84, 84, 84);
    --lines: rgb(147, 145, 99);
}

a{
    color: var(--mainTxtColor);
    text-decoration: none;
}


header{
    border-bottom: 3px solid rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
}

nav {
    list-style: none;
    
}

nav li {
    display: inline-block;
    padding: 0% 10px;
    
}



body{
    background-color: rgb(255, 255, 255);
    color: var(--mainTxtColor);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


main{
    
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    justify-content: center;
}




.thumb{
    
    color: var(--thumbTxtColor);
    text-align: center;
    outline: solid 2px black;
}

.static{
    position: absolute;

}

.static:hover{
    opacity: 0;
    
}

.project{
    
    margin-top: 20px;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    align-items: center;
    flex-shrink: initial;

}

.role{
    font-weight: 200;
}

.youtube{
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 640px;
}

.txtbox{
    padding: 20px;
    max-width: 960px;
    
}

.img_adjust{

    width: 60em;
    max-width: 500px;
}

.profile{

    width: 100%;
    max-width: 500px;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 5px;
    row-gap: 5px;
}

footer{
    text-align: center;
    font-weight: 100;
    
}