/* Reset básico */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: #FFF4F4;
  line-height: 1.5;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;    
  align-items: center;
}

h2 {
  font-family: "Cinzel Decorative", serif;
  font-weight: 600;
  font-style: normal;
}



p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

.titulo p {
  font-weight: 600;
  color: #882323;
}

button {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-style: normal;
}

