body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    background-color: #1e1e1e;
}
.navbar-brand {
    color: #00aaff; /* Azul claro */
}
.navbar-brand:hover {
    color: #0077cc; /* Azul escuro para hover */
}
.page-header {
    background-color: #1e1e1e;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}
.page-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
}
.project-item {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none; /* Remove o sublinhado do link */
    display: block; /* Garante que o link se comporte como bloco */
}
.project-item:hover {
    background-color: #333;
    transform: translateY(-5px);
}
.project-item h3 {
    color: #00aaff; /* Azul claro */
    margin-top: 0;
}
.project-item p {
    color: #b0b0b0;
}
.footer {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.col-md-12 a,
.col-md-12 a:link,
.col-md-12 a:visited,
.col-md-12 a:hover,
.col-md-12 a:active {
    text-decoration: none !important; /* Force removal of underline */
    color: inherit;
}

.example::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

 /* Hide scrollbar but allow scrolling */
html, body {
    overflow: auto;  /* Allow scrolling */
    scrollbar-width: none;  /* Hide scrollbar in Firefox */
}

html::-webkit-scrollbar {
    display: none;  /* Hide scrollbar in Webkit browsers (Chrome, Safari) */
}

/* Internet Explorer and old Edge */
html {
    -ms-overflow-style: none; /* Hide scrollbar in IE and old Edge */
}

/* Example content to make page scrollable */
.content {
    height: 200vh; /* Double the viewport height to enable scrolling */
}