.themeBox {
  width: 600px;
  height: 400px;
  background-color: antiquewhite;
}

.party {
  color: white;
  text-shadow: 1px 1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000,
    1px -1px 1px #000;
  background-image: url('../img/name-generator/party.png');
  font-family: 'DynaPuff', system-ui;

  font-weight: 400;
  font-style: normal;
}
.female-teacher {
  background-image: url('../img/name-generator/female-teacher.png');
  color: white;
  text-shadow: 1px 1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000,
    1px -1px 1px #000;
  font-family: 'Metamorphous', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}
.male-teacher {
  background-image: url('../img/name-generator/male-teacher.png');
  color: white;
  text-shadow: 1px 1px 1px #000, -1px 1px 1px #000, -1px -1px 1px #000,
    1px -1px 1px #000;
  font-family: 'Metamorphous', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}

.party #outputName {
  padding-left: 20px;
  padding-top: 100px;
  font-size: 8rem;
}

.male-teacher #outputName {
  padding-left: 20px;
  padding-top: 15px;
  font-size: 5.5rem;
}
.female-teacher #outputName {
  padding-left: 20px;
  padding-top: 15px;
  font-size: 5.5rem;
}

#outputList {
  padding-left: 20px;
}

.card-gen-link:link,
.card-gen-link:visited {
  text-decoration: none;
  color: hsl(204, 52%, 85%);
  background-color: rgb(48, 113, 156);
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  transition: all 0.5s;
}

.card-gen-link:hover,
.card-gen-link:active {
  text-decoration: none;
  background-color: hsl(204, 52%, 85%);
  color: #000;
  transition: all 0.5s;
}