* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;

}

main {
    background-color: #F0E8C2;
    border-radius: 10px;
    width: 800px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
    
}


#conteudo {
    font-size : 1rem;
    margin: 10px;
    line-height: 150%;
}

h2 {
    font-size: 24px;
    font-weight: bolder;
    padding: 10px;
}

#conteudo h1 {
    color: #333;
    margin-bottom: 10px;
    line-height: 140%;
    font-weight: bolder;
}

#img-principal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 24px auto;
    box-sizing: border-box;
    display: block;
}

body {
    background-image: url(img/main-image.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;

}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url(img/main-image.png);
  background-size: cover;
  background-position: center;

  filter: blur(8px);
  z-index: -1;
}

#rocketseat {
    text-align: center;
    margin: 20px auto;
    font-size: 1.2rem;
    color: purple;
    font-weight: bolder;
    background-color: #333;
    width: 300px;
}