
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color:  #F2B807;
    background-image: url('img/back.jpg'); 
    color: #fff; 
    display: flex; 
    flex-direction: column; 
}
#animatedElement {
    width: 200px; 
    height: 200px; 
    position: fixed;
    top: 20px; 
    left: 20px; 
    z-index: -1; 
}

#animatedElement img {
    width: 100%; 
    height: 100%; 
}



.imagem-bolinha {
    width: 100px;
    height: 100px; 
    border-radius: 50%;
    overflow: hidden; 
    
}

.imagem-bolinha img {
    width: 100%; 
    height: auto;
    display: block;
    transform: scale(1.5);
}

.sidebar {
    background-color:#0D0D0D;
    color: #fff;
    width: 250px;
    height: 100vh; 
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    overflow-y: auto; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebar header h1 {
    font-size: 20px;
}
.sidebar h2 {
    margin-bottom: 20px;
}
.sidebar h3 {
    margin-bottom: 10px;
}

#h li {
    padding: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar li {
    margin-bottom: 5px;
}

.content {
    margin-left: 250px;
    padding: 20px;
}


header {
    background-color:#0D0D0D;
    color: #fff;
}
header a {
    display: inline-block; 
    padding: 10px 20px; 
    margin: 10px;
    background-color: #F2B807;
    color: #000;
    text-decoration: none; 
    border-radius: 5px; 
    width: 120px;
}
header a:hover {
    background-color: #8C6A03;
    color: #fff; 
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 70px;
}


main {
    padding: 30px;
}

section {
    margin: 0 auto; 
    margin-bottom: 40px;
    max-width: 800px; 
    padding: 15px;
}

footer {
    background-color: #0D0D0D;
    color: #fff;
    text-align: center;
    padding: 10px;
}

#projetos {
    background-color: #0D0D0D;
    background-size: cover;
    background-position: center;
    color:  #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 

}

.projeto {
    color:#000000;
    background-color: #F2B807;
    cursor: pointer;
    display: block; 
    text-decoration: none;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px; 
}
.projeto:hover {
    background-color: #8C6A03;
    color: #ffffff;
}

#sobre {
    background-color: #0D0D0D;
    background-size: cover;
    background-position: center;
    color:  #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
}

#sobre a {
    display: inline-block; 
    padding: 10px 20px; 
    margin: 10px;
    background-color: #F2B807;
    color: #000000;
    text-decoration: none; 
    border-radius: 5px; 
}

#sobre a:hover {
    background-color: #8C6A03;
    color: #fff; 
}
