* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: rgb(8, 8, 8);
}

header {
  font-size: 1em;
  height: 4em;
  width: 100%;
  color: antiquewhite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img img {
  width: 100%;
}

.descripcion {
  padding: 3em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: antiquewhite;
}
.descripcion img {
  width: 25em;
  margin-left: 5em;
}
.parrafos {
  width: 40%;
}
.parrafos p {
  margin: 1em auto;
}
.caracteristicas {
  padding: 2em;
  background-color: rgb(15, 15, 15);
}
.caracteristicas h2 {
  color: antiquewhite;
  font-size: 2em;
  text-align: center;
  margin: 1em;
}
.iconos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}
.iconos i {
  color: antiquewhite;
  font-size: 3em;
  padding-bottom: 0.3em;
}

.iconos p {
  color: antiquewhite;
  font-size: 1.5em;
}

.galery {
  padding: 3.3em;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.galery img {
  width: 350px;
  height: 200px;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
}
.galery img:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

footer {
  background-color: rgb(15, 15, 15);
  padding: 1em;
  height: 2em;
  font-size: 1em;
  color: antiquewhite;
  text-align: center;
}
