@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,400&display=swap');
* {
    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;
}
.cajaMenu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    justify-items: center;
    grid-auto-rows: 150px;
    margin-bottom: 100px;
  }


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

.button-row {
    display: flex;
}

.button-panel a{
    height: 100px;
    width: 250px;
    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;
    display: flex;
    align-items: center;
}
#butHam {
    background-image: url(../images/hamburguesaBackground.jpg);
    background-size: cover;
}

#butBeb {
    background-image: url(../images/bebidaBackground.jpg);
    background-size: cover;
    background-position: center;
}

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

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

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

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

#butPost {
    background-image: url(../images/postreBackground.jpg);
    background-size: cover;
    background-position: center;
}
.container {
    padding: 0;
    display: flex;
    width: 90%;
    box-sizing: border-box;
    border: solid black 1px;
    border-radius: 10px;
    height: 200px;

  }

  .container img {
    float: left;
    width: 50%;
    margin-right: 10px;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .container p {
    margin-bottom: 5px;
    margin-top: 5px;
    float: right;
    width: 60%;
  }
  .container2{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .container button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 30px;
    background-color: orange;
    color: black;
  }
  @media only screen and (max-device-width : 480px) {
    .button-panel,
    .button-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

