body {
  font-family: Kanit, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  position: relative;
}
.banner {
  visibility: hidden;
  width: 300px;
  height: 250px;
  background: #0cf;
}

h1 {
  font-size: 27px;
  text-align: center;
  padding: 10px;
  margin: 0;
}

.shapes {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: start;
  height: 130px;
}

.item {
  /* border:1px solid white; */
  width: 82px;
  height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #c06;
  flex-shrink: 0;
}

.square {
  width: 80px;
  height: 80px;
  background: #c06;
  flex-shrink: 0;
}

/* triangle generator: https://triangle.designyourcode.io/ */
.triangle {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 80px 40px;
  border-color: transparent transparent #c06 transparent;
}

.footer {
  position: absolute;
  width: 300px;
  height: 70px;
  background: #09c;
  bottom: 0px;
  overflow: hidden;
}

h2 {
  text-align: center;
  color: white;
  width: 300px;
}

h4 {
  margin: 0;
  padding: 0;
  text-align: center;
}
