body{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: rgb(241, 214, 172);
    background-image: url(images/backgrounds/noisy.png);

}

h1{
    font-size: 42px;
}
h2{
    font-size: 32px;
}

.menu_bar{
    background-color: rgb(194, 162, 122);
    overflow: hidden;

    border-radius: 20px;
}
.menu_bar a{
    float:left;
    
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    
    padding: 14px 16px;

    transition: 0.2s;
}
.menu_bar a:hover{
    background-color: #8b4513;

    transition: 0.2s;
}



.sticky{
    position: sticky;
    top: 0;
}

/* Header and Self Styles */
.header_text{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.self{
    border-radius: 10%;
}

/* Flex & Social Item Styles */
.flex_container{
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;

    height: 60px;
    
    align-items: center;
    justify-content: center;
}

.social{
    width: 50px;
    height: 50px;

    margin: 0 7px 0 7px;
    padding: 2px;

    border-style: solid;
    border-radius: 25%;
    border-color:burlywood;

    transition: 0.2s;
}

.social:hover{
    background-color: #8b4513;
    opacity: 0.9;
    transform: scale(1.1);

    padding: 3px;
    transition: 0.2s;

    border-color: #c28b59; /* SaddleBrown */

}

/* Scroll Styles */
.scroll_container{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    
    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
}

/* Project Item Styles */
.projects{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.project_item{
    display: flex;
    flex-direction: column;

    align-items:center;
    margin: 10px;
    
    text-align: center;
    text-wrap: wrap;
    color: black;
    text-decoration: none;

    width: 320px;

    border-style: solid;
    border-radius: 10px;
    border-color:burlywood;

    transition: 0.2s;
}
.project_item:hover{
    background-color: #c28b59;
    transform: scale(1.05);
    border-color: #8b4513;
    transition: 0.2s;
}

.project_image{
    width: 320px;
    height: 180px;
    

    border-radius: 10px 10px 0 0;
}
.project_name{
    font-size: 20px;
}
.project_description{
    font-size: 16px;
}