* {
  box-sizing: border-box;
}

body {
  background-color: cyan;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-family: sans-serif;
}

/* NAVBAR */
nav {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  font-size: 20px;
  z-index: 1;
}

nav ul {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  width: 100%;
  height: 65%;
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
  margin-left: 45px;
}

nav ul li:hover {
  background-color: white;
  transition: 0.2s;
  height: auto;
  list-style: none;
  margin-left: 45px;
}

nav ul li a {
  color: white;
  font-family: fantasy;
}
/* NAVBAR */

/* BIENVENIDA */
#bienvenida {
  border-radius: 20px;
  border-style: solid;
  background-color: gold;
  width: 97%;
  margin: auto;
  margin-top: 8%;
  text-align: center;
}

@media screen and (max-width: 790px) {
  #bienvenida {
    border-radius: 20px;
    border-style: solid;
    background-color: gold;
    width: 97%;
    margin: auto;
    margin-top: 15%;
    text-align: center;
    display: block;
  }
}

#bienvenida img {
  width: 90%;
  border-radius: 20px;
}

#bienvenida p {
  margin: 15px;
}
/* BIENVENIDA */

/* SERVICIOS */
#servicios {
  border-radius: 20px;
  border-style: solid;
  width: 97%;
  margin: auto;
  background-color: lime;
  text-align: center;
}

#servicios p {
  margin: 15px;
}

#servicios img {
  width: 90%;
  border-radius: 20px;
}

#list-servicios {
  margin: 25px;
  text-align: center;
  padding-right: 20px;
}

#list-servicios div {
  border-style: solid;
  border-radius: 30px;
  background-color: aqua;
  margin: 30px;
}

#list-servicios div p {
  margin: 15px;
  text-align: justify;
}

#list-servicios div img {
  width: 30%;
  animation-name: float;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@media screen and (min-width: 800px) {
  #list-servicios {
    display: flex;
  }
}

@keyframes float {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(1px);
  }
}
/* SERVICIOS */

#creador {
  width: 100%;
  height: 50px;
  color: white;
  text-align: center;
  background: linear-gradient(blue, green, red);
}

#creador p {
  padding: 1%;
}

button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 15px;
    border-color: gold;
    clip-path: inset(0 round 10px);
}
