/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #047a67;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Estilos das seções de projeto */
.projeto {
    background-color: #ffffff;
    border: 1px solid #0a9951;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projeto:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.projeto h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.projeto p {
    font-size: 16px;
    text-align: center;
}

/* Estilos dos botões nos projetos */
.projeto .botao {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.projeto .botao:hover {
    background-color: #2980b9;
}

/* Estilos do rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}
