* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: auto;
  background-color: black;
}

.logo_imagen {
  width: 15%;
  margin: 2%;
}

.logo_imagen img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.logo_texto {
  width: 85%;
}

nav {
  display: flex;
  width: 80%;
  justify-content: space-evenly;
  margin: 2vh auto;
  background-color: blue;
}

nav a {
  font-size: x-large;
  color: white;
  text-decoration: none;
  margin: 2px;
  padding: 5px;
  border-radius: 25%;
  width: 10%;
}

nav a:hover {
  color: red;
  background-color: blue;
}

.contenedor {
  display: flex;
  width: 80%;
}

.contenedor section {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.contenedor section .datos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 3% 55%;
}

.contenedor section .datos .icono img {
  width: 40px;
}

.contenedor section .datos .texto {
  font-size: 35px;
  font-weight: bold;
  margin: 0 0 0 15px;
}

.contenedor section .datos .texto a {
  text-decoration: none;
  color: black;
}

.contenedor section .datos .texto a:hover {
  color: aquamarine;
  background-color: blueviolet;
}

/****************************************/

@media screen and (min-width: 481px) and (max-width: 768px) {
  .contenedor section .datos {
    margin: 3% 5%;
  }
}

/****************************************/

@media screen and (max-width: 480px) {
  .contenedor section .datos {
    margin: 3% 0;
  }

  .contenedor section .datos .texto {
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 0 15px;
}
