@charset "utf-8";
/* CSS Document */

.h1title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
  text-align: center;
  padding: 50px;
  color: #fff;
  background: #005ead;
}

.h1title img {
  width: 50px;
}

@media screen and ( max-width:767px ) {
  .h1title {
    flex-direction: column;
  }
}