.title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 0px;

  color: #ae76ff;
  text-shadow: 3px 3px 0 #5828b8;
  text-decoration: underline;
  font-family: Bagel Fat One;
  font-size: 60px;

  line-height: 1;
}

.birth-bar {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;

  color: #230663;
  font-family: Cherry Bomb One;
  font-size: 24px;
}

.links-group {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.links-group li a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  line-height: 1;
}

.links-group li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.links-group li a:hover::after {
  opacity: 1;
}

.links-group li:after {
  content: "·";
  vertical-align: middle;
  font-size: 30px;
  font-weight: bold;
}

.links-group li:last-child:after {
  content: "";
}

.links {
  font-family: Cherry Bomb One;
  font-size: 20px;
  color: #230663;
  border-radius: 4px;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;

  margin-right: 0px;
}

.duhz-picks-title {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

  font-family: Bagel Fat One;
  font-size: 25px;
  color: #043820;
  background-color: #d1eedb;
  border-radius: 4px;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.duhz-picks-links-group {
  display: flex;
  text-align: center;
  justify-content: center;
}

.duhz-picks-links {
  font-family: Cherry Bomb One;
  font-size: 20px;
  color: #043820;
  background-color: #d1eedb;
  border-radius: 4px;
  width: fit-content;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;

  margin-right: 10px;
}

.quick-propoganda {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

  font-family: Bagel Fat One;
  font-size: 25px;
  color: #370617;
  background-color: #f57282;
  border-radius: 4px;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.propoganda {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

  font-family: Cherry Bomb One;
  font-size: 20px;
  color: #370617;
  background-color: #f57282;
  border-radius: 4px;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.credits {
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

  font-family: Cherry Bomb One;
  font-size: 16px;
  border-radius: 4px;

  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.credits-plus {
  color: #e1b8f9;
}

.title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media only screen and (max-width: 640px) {
  .title {
    font-size: 40px;
  }

  .birth-bar {
    font-size: 18px;
  }
}