:root {
    --primary: #fffaf1;
    --secondary: #ffffff;
    --accent: #3b5249;
}

body{
    font-family: 'Merriweather', serif;
    background-color: var(--primary);
}

#main_container{
    margin-top: 25px;
    text-align: center;
}

#social_media_container{
    text-align: center;
    padding: 20px;
}

#contact_container{
    text-align: center;
    padding: 20px;
}

.title_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#avatar{
    width: 200px;
    height: 200px;
}

.title{
    font-weight: bold;
    margin-top: 0px;
    margin-right: 5px;
}

.title_link{
    font-weight: bold;
    margin-top: 0px;
    margin-right: 5px;
    font-size: 18px;
    text-decoration: none;
    color: black;
    border-radius: 10px;
    padding: 4px;
}

.contact_p{
    font-size: 18px;
}

.title_link:hover{
    text-decoration: underline;
    transition: 0.3s;
}

#linkedin {
    width: 45px;
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
}

#github{
    width: 40px;
    padding: 10px;
    border-radius: 10px;
    margin-left: 10px;
}

#linkedin:hover, #github:hover{
    transition: 0.2s;
    box-shadow: 1px 1px 5px var(--accent);
    background-color: var(--secondary);
}

.social_a{
    text-decoration: none;
}

#email{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

#email:hover{
    text-decoration: underline;
}

#about_div{
    width: 800px;    
}

#about_div_container{
    width: 100%;
    justify-content: center;
    text-align: justify;
    display: flex;
    flex-wrap: wrap;
}
  