@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap');

body {font-family: 'Raleway', sans-serif; height: 100%; }


.backButton {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  top: 32px;
  right: 32px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  /* z-index: 9999999999; */
  background-color: #bbb;
  text-decoration: none;
  font-weight: 800;
  color: white;
}
.backButton::before {
  content:'<';
}


.center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}


.wrapper {
  margin: 150px;

  width: 1000px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(5, 200px);
}
.column a {
  text-decoration: none;
  color: black;
  display: block;
  height: 100%;
}
.column {
  color: #fff;
  font-size: 150%;
  width: 200px;
  height: 220px;
  text-transform: uppercase;
  text-align: left;
}
.column .first {
  padding-top: 16px;
  padding-left: 16px;
  font-weight: 600;
}
.column .second {
  padding-left: 16px;
  font-weight: 200;
  color: white;
}
.column img {
  width: 100%;
}
