
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    background-color: rgb(150, 109, 109);
}
header {
    background-color: rgb(102, 5, 5);
    color: white;
    padding: 15px 5px;
    text-align: center;
    border-bottom: 6px solid rgba(255, 80, 80, 0.35);
}

header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.logo-area img {
  height: 5rem;
}
.resumo {
  color: white;
  text-align: center; 
  margin: 8rem;
  font-size: large;
}

.bnt {
    text-decoration: none;
    color: rgb(167, 75, 75);
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: rgba(220, 220, 220, 0.9);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    margin: 2rem;
}