* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

img {
  display: block;
}

.full-img {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cell {
  position: relative;
  border: 1px solid white;
}

.white {
  color: white;
}

.shad {
  text-shadow: 0 5px 10px black;
}

.heading {
  font-size: 1.5rem;
  font-weight: 600;
}

.top-center {
  position: absolute;
  text-align: center;
  top: 2rem;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.bottom-center {
  position: absolute;
  text-align: center;
  bottom: 2rem;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.center-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 40%;
}
