@import url("https://fonts.googleapis.com/css2?family=Cabin&family=Cardo&family=Comfortaa&family=Crimson+Pro&family=Dancing+Script&family=Josefin+Sans&family=Josefin+Slab&family=Lobster+Two&family=Permanent+Marker&family=Poiret+One&display=swap");
body {
  margin: 25vh auto;
  max-width: 800px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: ". one two three ." "eight moi moi moi four" ". seven six five .";
  align-items: center;
}

.vert {
  transform: rotate(90deg);
  align-self: center;
}

.mirror {
  transform: rotate(-90deg);
}

.box {
  font-size: 2.5rem;
  line-height: 1.8;
  text-align: center;
}

.name {
  grid-area: moi;
  font-family: "Josefin Sans", "Gill Sans", "Helvetica Neue", sans-serif;
  font-size: 3.25rem;
  letter-spacing: 1.5px;
  padding: 0.25rem 0 0;
  background-color: #096;
  color: rgba(255, 255, 255, 0.75);
  margin: 0.25rem 0;
  text-shadow: rgba(0, 0, 0, 0.5) -2px 2px;
  transition: all 0.3s ease-in;
}
.name:hover, .name:focus {
  text-shadow: rgba(0, 0, 0, 0.7) -3px 3px;
  letter-spacing: 1.7px;
  color: rgba(255, 255, 255, 0.9);
}

.b {
  grid-area: one;
  font-family: "Permanent Marker", cursive;
}

.c {
  grid-area: two;
  font-family: "Cabin", sans;
  padding-right: 2rem;
}

.d {
  grid-area: three;
  font-family: "Lobster Two", cursive;
}

.e {
  grid-area: four;
  font-family: "Josefin Slab", cursive;
}

.f {
  grid-area: five;
  font-family: "Comfortaa", serif;
}

.g {
  grid-area: six;
  font-family: "Poiret One", cursive;
  font-weight: 600;
}

.h {
  grid-area: seven;
  font-family: "Dancing Script", cursive;
}

.i {
  grid-area: eight;
  font-family: "Crimson Pro", sans;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
}
a:visited {
  color: rgba(0, 0, 0, 0.7);
}
a:hover, a:focus {
  background: linear-gradient(30deg, #096, #6558ED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.disabled {
  transition: all 0.5s ease-in-out;
}
.disabled:hover, .disabled:focus {
  opacity: 0.2;
}