@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,300&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "roboto", sans-serif;
}

<!--FUNDO PRINCIPAL-->
body {
  background-color:  rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo{
  width: 250px;
  height: auto;
  margin: 0.5rem;
}

h1 {
  text-align: center;
  margin: 0 15px;
  font-size: 21px;
}

.container {
  display:flex;
  width: 100%;
  justify-content: center;
}


.conteudo {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0px;
  border-radius: 10px;
  padding: 10px 0px;
}

.cabecalho-footer {
  width: 100%;
  height: 120px;
  background-color: #160467;
  box-shadow: 0px 0px 5px rgb(1, 0, 11);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

}

