

.cabecalho {
    background-color: #607848;
    height: 8vh;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    display: flex;
}

.cabecalho_inicial{
    background-color: #607848;
    height: 29vh;
    text-align: center;
}

#btn {
    justify-content: space-around;
    align-items: center;
    position: sticky;
    display: inline;
}

button:hover {
 box-shadow: 0 4px 8px rgba( 0, 0, 0, 0.5);
}

#btn button {
    border: none;
    background-color: #607848;
    color: aliceblue;
    border-radius: 10px;
    padding: 8px 8px;
    cursor: pointer;
    margin: 2px;
}

.nav {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 32px;
}

.nav a {
    color: aliceblue;
    cursor: pointer;
}

p {
    font-family: 'Times New Roman', Times, serif ;
    font-size: large;
}

body {
    margin: 0;
    padding: 0;
    background-color: #d2e2d2;
}

#titulo {
    font-family: 'Times New Roman', Times, serif;
	text-shadow: 0px 2px 4px #415230;
    color: aliceblue;
    text-align: center;
}

#card {
    width: 300px;
    box-shadow: 0 4px 8px rgba( 0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 16px;
    margin: 20px;
    background-color: aliceblue;
}

.card-img {
    width: 100%;
    border-radius: 5px;
}

#descricao {
    width: 100%;
    border-radius: 5px;
}

.card-ul {
    width: 100%;
    border-radius: 5px;
}

#container {
    display: flex;
    justify-content: space-around;
}


