.header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.conteiner_ryh{
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos horizontalmente */
    gap: 10px; /* Espacio entre redes sociales y reloj */
    margin-top:20px;
}

.redes_sociales .item {
  text-decoration: none;
  color: white;
  transition: 0.8s ease-in;
  margin: 0px 5px;
  background-color: #075f98;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.item:hover {
  color: rgba(250, 154, 29, 1);
  background-color: white;
  border: 1px solid #075f98;
  transform: rotate(360deg);
}

@media (max-width: 435px) {
    .header{
      justify-content: center;
      align-items: center;
    }
}