@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

body, h1, ul {
    margin: 0;
    padding: 0;
}

p {
    font-size: 14px;
}

body {
    background-image:url(imagenes/background.png) ;
    font-family: 'Poppins', sans-serif;
}

 h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

.contenedor {
    background-color: rgb(117, 115, 115);
    width: 70%;
    margin: 0 auto;
}

.cabeza {
    background-color: rgb(7, 7, 7);
    color: white;
    padding: 50px;
    text-align: center;
}

.menu {
    background-color: black;
    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 {
    background-image: url(imagenes/fondo.jpg);
    color: white;
    text-align: center;
    padding: 10px;
}

.centrar {
    display: block;
    margin: auto;
}

.adaptable {
    width: 100%;
}
img {
    object-fit: cover;
    object-position: bottom;
  }
  footer {
    background-color: #121315;
    color: #a7a7a7;
    font-size: 16px;
  }
footer * {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    border: none;
    outline: none;
}
.row {
    padding: 1em 1em;
}
.row.primary {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    align-items: stretch;
}
h3 {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.4em;
    white-space: nowrap;
}
  li:not(:first-child) {
    margin-top: 0.8em;
}
ul li a {
    color: #a7a7a7;
    text-decoration: none;
}
ul li a:hover {
    color: #2a8ded;
}
.about p {
    text-align: justify;
    line-height: 2;
    margin: 0;
}
input,
button {
    font-size: 1em;
    padding: 1em;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}
button {
    background-color: #c7940a;
    color: #ffffff;
}
div.social {
    display: flex;
    justify-content: space-around;
    font-size: 2.4em;
    flex-direction: row;
    margin-top: 0.5em;
}
.social i {
    color: #bac6d9;
}
  
.copyright {
    padding: 0.3em 1em;
    background-color: #25262e;
}
.footer-menu{
    float: left;
      margin-top: 10px;
}
  
.footer-menu a{
    color: #cfd2d6;
    padding: 6px;
  
    text-decoration: none;
}
.footer-menu a:hover{
    color: #27bcda;
}
.copyright p {
    font-size: 0.9em;
    text-align: right;
  }
@media screen and (max-width: 850px) {
    .row.primary {
      grid-template-columns: 1fr;
    }
  
  }
