body {
    background-color: rgb(208, 191, 214);
    color: #333;
}

header {
    background-color: rgb(184, 152, 196);
    color: #000;
    padding: 10px 0;
    text-align: left;
}

a:hover {
color: #333;
}

nav {
    text-align: left;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.projeto {
    background-color:rgb(220, 218, 221);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.projeto img {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
}


.projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

button a {
    text-decoration: none;
}