html {
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

#header
{
    height:100vh;
    background-image: url(background.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#header::before 
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.user-box
{
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    position: absolute;  
}

.user-box img
{
    border-radius: 50%;
    border: 2px solid white; 
}

.user-box h1 
{
    color: #808080;
}

.user-box p 
{
    color: #808080;
}

.about
{
    padding-top: 50px;
    padding-bottom: 50px;
}

.profile-img
{
    width: 400px;
    height: 620px;
}

.text-justify
{
    text-align: justify; 
}

.custom-nav 
{
    margin-left: auto;
}

.navbar-nav 
{
    margin-right: 20px;
}

.nav-bar 
{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #d8d8d8;
}

.nav-link
{
    color: #808080;
}

.nav-link:hover
{
    color: black;
}


.about .container
{
    padding-bottom: 50px;
}

.about .skills-bar .progress-bar
{
    background-color: #9a3a3abd;
    border-radius: 16px;
}

.skills-bar p
{
    margin-bottom: 4px;
    margin-top: 15px;
}

.progress
{
    border-radius: 16px;
    margin-bottom: 10px;
}

.tools
{
    margin-top: 20px;
}

.resume 
{
    padding-top: 50px; 
    padding-bottom: 30px;
    background-color: #f0ededa6;
}

.resume h3 
{
    margin-bottom: 20px; 
}

.resume .container
{
    padding-bottom: 5px;
}

.experiences {
    margin-bottom: 30px; 
    text-align: justify;
    font-size: 15px;
}

.timeline
{
    list-style-type: none;
    position: relative;
    margin-top: 30px;
}

.timeline:before {
    content: '';
    background: #808080;
    display: block;
    position: absolute;
    left: 15px; 
    width: 2px;
    height: 100%;
    z-index: 1;
}

.timeline .experiences:before
{
    content: '';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #000;
    left: 6px;
    width: 20px;
    height: 20px;
    z-index: 1; 
}

.projects
{
    padding-top: 50px;
    padding-bottom: 10px;
}

.projects h4
{
    margin-bottom: 30px;
}

.project-content
{
    padding-top: 20px;
    font-size: 15px;
}

.projects-box
{
    background: #f0ededa6;
    padding: 20px;
    margin-top: 20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.projects-box .fa-solid
{
    margin: 0 10px;
    font-size: 20px;
}

.projects-box span
{
    margin: 1px;
    font-size: 15px;
    font-weight: bold;
}

.projects-box:hover 
{
    background: #ddbdbdbd;
    padding: 20px;
    margin-top: 20px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: 1s;  
}

.contact
{
    background: #9a3a3abd;
    margin-bottom: -50px;
}

.contact .container
{
    padding-top: 20px;
    color: white;
    padding-bottom: 10px;
}

.contact h3
{
    padding-bottom: 10px;
}

.contact .fa-solid
{
    font-size: 20px;
}

.contact .fa-solid:hover
{
    font-size: 40px;
    transition: 1s;
}

.contact .btn
{
    padding: 10px 25px 10px 25px;
    margin: 5px;
    border-radius: 30px;
    border: 2px solid #fff;
    background: transparent;
}

.contact .btn:hover
{
    border: 2px solid #f0ededa6;
    background: #f0ededa6;
}

.volunteer
{
    opacity: 0.1; 
    transition: opacity 1.5s ease; 
}

.volunteer:hover
{
    opacity: 1;
}

#pictures img
{
    border-radius: 50px;
    margin-bottom: 10px;
}

.fa-solid.fa-medal
{
    font-size: 300px;
    text-align: center;
    margin-top: 80px;
}





