* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

h2 {
    margin-top: 70px;
    margin-bottom: 50px;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-image {
    position: relative;
    height: 50%;
    width: 50%;
    margin-top: 50px;
  }

  .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

.button-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-row {
    display: flex;
}

.button-panel a {
    height: 150px;
    width: 300px;
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    color: white;
    text-decoration: dotted black 2px;
    font-size: 16px;
    font-weight: bolder;
    cursor: pointer;
    text-align: left;
    align-items: center;
    display: flex;
}

#butHam {
    background-image: url(../images/hamburguesaBackground.jpg);
    background-size: cover;
}

#butPat {
    background-image: url(../images/patataBackground.jpg);
    background-size: cover;
}

#butCarn {
    background-image: url(../images/carneBackground.jpg);
    background-size: cover;
}

#butEns {
    background-image: url(../images/ensaladaBackground.jpg);
    background-size: cover;
}

#butAlerg {
    background-image: url(../images/alergBackground.jpg);
    background-size: cover;
}

#butPost {
    background-image: url(../images/postreBackground.jpg);
    background-size: cover;
}
@media only screen and (max-device-width : 480px) {
    .hero-section,
      .hero-image {
          padding: 0%;
          margin-top: 0%;
          position: relative;
          top: 0;
          left: 0;
          height: auto;
          width: 100%;
      }

      .hero-image img {
          object-fit: contain;
          height: 100%;
          width: 100%;
          padding: 0%;
          margin-top: 0%;
      }

      .button-panel,
      .button-row {
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      h2 {
          margin-top: 50px;
          margin-bottom: 20px;
          font-size: 20px;
          font-family: 'Poppins', sans-serif;
          font-weight: 500;
      }
}


