@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@800&display=swap");
body {
  margin: 0px;
}

#grid_main {
  font-family: 'Fira Sans', sans-serif;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "header" "cuerpo";
}

#titulo {
  height: 15vh;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  font-size: 45px;
}

#titulo_1 {
  margin: 0px 0px 0px 0px;
}

#taza {
  height: 85vh;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: cuerpo;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}

#div_svg {
  border-style: solid;
  border-width: 10px;
  width: 750px;
  height: 600px;
  border-radius: 30px;
  background-color: burlywood;
}

#svg_1 {
  stroke: black;
  stroke-width: 15px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lines {
  fill: none;
}

.shapes {
  fill: black;
}
/*# sourceMappingURL=style.css.map */