@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}

.display, .header_ul, .redes_iconos, .div_redes_iconos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.div_redes_iconos {
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
}

.redes_iconos {
  transition: ease 0.3s;
  height: 60px;
  width: 25%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background-color: #ff4747;
}
.redes_iconos:last-child {
  border-right: 0;
}
.redes_iconos:hover {
  bottom: 2px;
  left: 2px;
  box-shadow: 0px 0px 0px #fff;
}

.redes_iconos:hover {
  background-color: #212235;
}

.redes_iconos_svg {
  color: #fff;
  font-size: 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 80px;
  padding-top: 60px;
  padding-bottom: 10px;
  margin-bottom: -1px;
  background-color: #ff4747;
}

.logo_svg {
  width: 14em;
}

.header_ul a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 6px;
}
.header_ul a:hover {
  opacity: 0.6;
}
.header_ul .btn_login {
  font-weight: 600;
  color: #ff4747;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 1.2em;
  }
  .header_ul a {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  header {
    flex-direction: column;
    height: 100%;
  }
  header .span_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  header .span_title .title {
    width: 60%;
    text-align: center;
    font-size: 2em;
  }
  .header_ul {
    width: 100%;
  }
}