section {
  height: 75%;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
}

section span {
  display: flex;
  align-items: center;
  justify-content: center
}

section a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  height: 2rem;
  width: 60%;
  border-radius: 1rem;
  padding: 0 1rem 0 1rem;
  color: #000;
}

p.display {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: red;
  margin-left: -2rem;
  transform: scale(0.8);
  transition: transform 0.5s;
}
p.display::after,
p.display::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 1.3rem;
  height: 0.25rem;
  background: #fff;
  transform: rotate(45deg);
  top: 0.85rem;
  left: 0.37rem;
}

p.display::after {
  transform: rotate(-45deg)
}

@media(orientation:landscape) {
  section {
    grid-template-columns: auto auto auto auto;
  }
}
