/* Reset de CSS */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header{
 font-family: "Roboto", sans-serif;
 background-color: rgb(67, 64, 61);
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px;
}

header nav ul{
  align-items: center;
  justify-content: center;
  display: flex;
  list-style: none;
  color: whitesmoke;
  gap: 15px;
  padding-right: 10px;
}

h1 {
  font-style: normal;
  color: rgb(255, 149, 0);
  text-align: center;
}

h2{
  color: blueviolet;
  text-align: center;
  padding: 20px;
}

h3{
  padding-left: 5px;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  margin: 20px;
}

.titulos{
  font-family: "Roboto", sans-serif;
}

form{
  font-family: "Roboto", sans-serif;

}

main{
  flex-wrap: wrap;
}

.imagen{
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

footer{
  text-align: center;
  color: whitesmoke;
  background-color: rgb(67, 64, 61);
  padding: 10px;
}