/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    min-height: 100vh;
    position: relative;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.typing-effect {
    margin-bottom: 20px;
}

.language-card {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.language-card img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

.language-card img:hover {
    transform: scale(1.1);
}

.projects ul {
    list-style-type: none;
    padding: 0;
}

.projects ul li {
    margin-bottom: 10px;
}

.projects ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.projects ul li a:hover {
    color: #007bff;
}

/* Estilos do rodapé */
.footer {
    position: botton;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 60px; /* Centraliza verticalmente o texto */
}

.carousel-control-next,
.carousel-control-prev {
    filter: invert(100%);
}