body,
html {
    font-family: 'Dancing Script', cursive;
    margin: 0;
}

header > h2 {
    font-size: 3rem;
    margin: 0;
    position: relative;
}

@media (min-width: 800px) {
  header > h2:before {
    content: "";
    width: 50px;
    height: 30px;
    display: block;
    background: transparent url('./points_colores2.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: -60px;
    bottom: 15px;
  }

  header > h2:after {
    content: "";
    width: 100px;
    height: 50px;
    display: block;
    background: transparent url('./bee_path.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 10px;
    right: -98px;
  }
}


p {
    font-size: 1.8rem;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.inner > a img {
    padding: 0 40px;
}

header {
    width: 100%;
    text-align: center;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;

    gap: 10px;

    OLDheight: calc(65vh - 20px);
}

footer {
    width: 100%;
    background-color: rgb(230, 232, 234);
    display: flex;
    align-items: center;

    height: 80px;
}

.inner {
    display: flex;
    border-radius: 45px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    justify-content: space-between;
}

#bza {
    background-color: rgb(243, 245, 249);
}

#bze {
    background-color: rgb(254, 248, 246);
}

.gallery {
    display: flex;
    justify-content: space-between;
    width: 85%;
}

.gallery img {
    border: 1px solid black;
    border-radius: 10%;
    max-height: 70px;
    transition: transform 0.2s ease-in-out;
}

.gallery img:hover {
    transform: scale(3);
}


@media (max-width: 800px) {
  .container {
    flex-direction: column;
    OLDheight: revert;
  }

  .gallery {
      width: 95%;
  }
}

footer > ul {
    line-height: 30px;
}

.social-icons {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons li {
    display: inline;
}

.social-icons img {
    height: 30px;
    border-radius: 20%;
}
