*{
    box-sizing: border-box;
}

body{
    background-image: url("imagenes/fondo-carta.png");
    background-size: cover;
    background-position: center center;
}

html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
  }



  body {
    margin: 0;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
  }

  h1 {
    text-align: center;
    font-size: 28px;
    color: #f2c94c;
    margin-bottom: 30px;
  }

  .cocteles {
    display: grid;
    gap: 20px;
  }

  .coctel {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  }

  .coctel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .coctel-info {
    padding: 15px;
  }

  .coctel-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #f2c94c;
  }

  .coctel-info p {
    font-size: 14px;
    color: #ccc;
    margin: 0 0 10px;
  }

  .precio {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
  }

  @media (min-width: 600px) {
    .cocteles {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 900px) {
    .cocteles {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  h1{
    color: white;
    text-align: center;
    font-size: 30px;
  font-family: 'CopperplateCustom', sans-serif;
}

@font-face {
  font-family: 'CopperplateCustom';
  src: url('fuentes/OPTICopperplate-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}