@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

body, h1, ul {
  margin: 0;
  padding: 0;
}

.topnav {
    background-color: rgb(245, 241, 241);
    overflow: hidden;
  }

.column {
    float: left;
    width: 33.33%;
  }
  
@media screen and (max-width: 600px) {
.column {
      width: 100%;
    }
  }

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
.topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
.topnav a.active {
    background-color: #8d1b87;
    color: white;
  }
p {
    font-size: 14px;
}

body {
    background-image: url(imagenes/background.jpg);
    font-family: 'Poppins', sans-serif;
}

 h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

.contenedor {
    background-color: rgb(132, 196, 212);
    width: 70%;
    margin: 0 auto;
}

.cabeza {
    text-align: center;
}

.menu {
  border-radius: 50px;
  background: linear-gradient(315deg, #dd77d4, #ff8dfd);
  box-shadow:  -20px -20px 60px #d070c9,
               20px 20px 60px #ff98ff;
    background-color: rgb(160, 33, 143);
    border-bottom: 2px solid white;
}

.menu ul {
    list-style: none;
}

.menu li {
    display: inline-block;
    padding: 10px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu a:hover {
    color: rgb(175, 175, 29);
}

.cuerpo1 {
    color: white;
    text-align: center;
    padding: 10px;
}

.centrar {
    display: block;
    margin: auto;
}

.adaptable {
    width: 100%;
}