:root {
  --primary-background: #bad8f2;
  --secondary-background: #174f84;
  --padding: 1.5rem;
  --primary-color: #b53c8c;
  --transition-length: 0.3s;
  --content-width: 1280px;
  --body-color: #1a1f3f;
  --border-radius: 2rem;
  --border-color: #181c332f;
  --dimmed-text: #9a9ac2;
  font-size: min(4vw, 20px);
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--body-color);
  background-color: var(--primary-background);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer styling */

body > footer {
  width: 100%;
  border-top: solid var(--border-color) 0.05rem;
  display: flex;
  justify-content: center;
}

body > footer > div {
  max-width: var(--content-width);
  width: 100%;
  padding: 1.5rem var(--padding);
  box-sizing: border-box;
  display: flex;
  gap: 1.5rem;
}

body > footer > div > section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

body > footer h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Icon list styling */

ul.icons {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
}

ul.icons li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}

ul.icons li > i {
  width: 1.5rem;
}

/* General styling */
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

hr {
  border: none;
  border-top: solid var(--border-color) 0.05rem;
  width: 100%;
  margin: 0.25rem;
}

b,
strong {
  font-weight: 700;
}

p,
section.normal ul > li {
  line-height: 1.2;
}

section.normal ul > li.offset {
  margin-left: 1rem;
}

.highlight {
  color: var(--primary-color) !important;
}

a:not(.btn) {
  color: var(--secondary-background);
  transition: var(--transition-length);
  text-decoration-thickness: 0.05rem;
  text-underline-offset: 0.15rem;
}

a:not(.btn):hover {
  color: var(--primary-color);
}

a.btn,
button {
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  width: fit-content;
  border-radius: var(--border-radius);
  transition: var(--transition-length);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  border: none;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

a.btn.primary,
button.primary {
  color: white;
  background-color: var(--secondary-background);
}

a.btn.secondary {
  color: var(--secondary-background);
  background-color: white;
}

section.btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

section.btns.end {
  justify-content: flex-end;
}

a.btn:hover,
button:hover {
  transform: scale(1.025);
}

button.scroll-to-top {
  position: fixed;
  bottom: -2.5rem;
  right: 1.5rem;
  background-color: var(--secondary-background);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  transition: var(--transition-length);
  cursor: pointer;
  border: none;
  z-index: 1;
}

button.scroll-to-top.show {
  bottom: 1.5rem;
}

section.image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  height: fit-content;
  min-height: 15rem;
  gap: 2rem;
}

section.image img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}

section.image iframe {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  border-radius: var(--border-radius);
  border: 0.05rem solid var(--border-color);
}

section.image > section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
  box-sizing: border-box;
}

/* Article styling */

section.normal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

section.normal iframe {
  width: 100%;
  height: 20rem;
  border-radius: var(--border-radius);
  border: 0.05rem solid var(--border-color);
}

section.normal .note {
  display: flex;
  gap: 1rem;
  background-color: white;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 1rem;
  color: var(--dimmed-text);
}

section.normal > h2:not(:first-child) {
  margin-top: 1rem;
}

section.normal > h3:not(:first-child) {
  margin-top: 0.5rem;
}

section.normal .images,
section.normal > p:has(img) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

section.normal .images > img,
section.normal > p:has(img) > img {
  max-width: 75%;
  object-fit: contain;
}

section.normal ul:not(.players):not(.icons) {
  list-style: disc;
  padding-left: 1rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

section.normal ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.table-container {
  overflow-x: auto;
  width: 100%;
  border-radius: 0.85rem;
}

table {
  border-spacing: 0.1rem;
  border-collapse: separate;
  background-color: var(--border-color);
  border-radius: 0.85rem;
  width: 100%;
  white-space: nowrap;
}

table th,
table td {
  text-align: left;
  padding: 0.6rem;
}

table > thead > tr:first-child > th:first-child,
table > thead:not(:has(th)) > tr:first-child > td:first-child,
table:not(:has(thead)) > tbody > tr:first-child > td:first-child {
  border-top-left-radius: 0.8rem;
}

table > thead > tr:first-child > th:last-child,
table > thead:not(:has(th)) > tr:first-child > td:last-child,
table:not(:has(thead)) > tbody > tr:first-child > td:last-child {
  border-top-right-radius: 0.8rem;
}

table > tbody > tr:last-child > td:first-child,
table:not(:has(tbody)) > thead > tr:last-child > th:first-child,
table:not(:has(tbody)) > thead > tr:last-child:not(:has(th)) > td:first-child {
  border-bottom-left-radius: 0.8rem;
}

table > tbody > tr:last-child > td:last-child,
table:not(:has(tbody)) > thead > tr:last-child > th:last-child,
table:not(:has(tbody)) > thead > tr:last-child:not(:has(th)) > td:last-child {
  border-bottom-right-radius: 0.8rem;
}

table th {
  background-color: var(--secondary-background);
  color: white;
}

table td {
  background-color: white;
}

section.normal .info-box {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-sizing: border-box;
  align-items: center;
}

section.normal .info-box > img {
  width: 100%;
  height: 100%;
  max-height: 15rem;
  grid-column: 2;
  object-fit: contain;
}

/* Pointbench styling */
div.pb-dynamic > div.content-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

div.pb-dynamic table:not(.date-line table) {
  background-color: var(--border-color) !important;
  border-collapse: separate !important;
  border-spacing: 0.1rem !important;
}

div.pb-dynamic table td {
  padding: 0.6rem !important;
  border: none !important;
  font-size: 1rem;
}

div.game-list table {
  background-color: transparent;
}

div.game-record {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

tr.summary {
  color: white;
}

tr.summary td {
  background-color: var(--secondary-background) !important;
}

.pb-dynamic h1,
.pb-dynamic h2,
.pb-dynamic h3,
.pb-dynamic h4 {
  margin-top: 0.8rem;
}

.date-line table td {
  padding: 0;
  background-color: transparent;
}

.date-line table {
  border-spacing: 1.5rem;
  border-collapse: separate;
}

.date-line > td {
  background-color: transparent;
  padding: 1rem !important;
  background-color: var(--secondary-background) !important;
  color: white;
}

.date-line:first-child > td {
  border-radius: 0.85rem 0.85rem 0 0;
}

.date-line tr > td:first-child h3 {
  text-align: left;
  margin: 0;
}

.date-line tr > td:last-child h3 {
  text-align: right;
  margin: 0;
}

table thead tr:first-child td:first-child {
  border: 1px solid #c0c0c0;
}

.pb-dynamic .team-select select {
  padding: 0.6rem 0.8rem;
  border-radius: var(--border-radius);
  transition: var(--transition-length);
  font-weight: 500;
  border: none;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  background-color: var(--secondary-background);
  color: white;
  box-sizing: border-box;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1rem;
}

div.pb-dynamic td.team {
  max-width: 10em;
  overflow: hidden;
  position: relative;
}

div.pb-dynamic td.team::after {
  content: "";
  display: block;
  height: 100%;
  width: 20%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: linear-gradient(to right, #ffffff69, white);
  z-index: 1;
}

/* Header styling */

body > header {
  position: sticky;
  top: 0;
  background-color: var(--primary-background);
  border-bottom: solid var(--border-color) 0.05rem;
  width: 100%;
  display: flex;
  z-index: 2;
  justify-content: center;
}

body > header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem var(--padding);
  height: 3rem;
  width: 100%;
  max-width: var(--content-width);
  box-sizing: border-box;
}

body > header img {
  height: 3rem;
}

body > header a {
  color: var(--secondary-background) !important;
  text-decoration: none;
  transition: var(--transition-length);
}

body > header a:hover {
  color: var(--primary-color) !important;
}

body > header nav > ul {
  display: flex;
  gap: 1.5rem;
}

body > header nav li.stats,
body > header nav li.resultsMen,
body > header nav li.resultsWomen,
body > header nav li.managerInfo,
body > header nav li.teamRegistration {
  display: none;
}

body > header button.mobile-menu {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown > div {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  width: fit-content;
  border-radius: 1rem;
  transform: translateY(-0.5rem);
  transition: opacity var(--transition-length),
    transform var(--transition-length), visibility var(--transition-length);
}

.dropdown ul {
  display: flex;
  margin-top: 0.5rem;
  flex-direction: column;
  background-color: white;
  color: var(--body-color);
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  gap: 1rem;
}

.dropdown.show > div {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown ul a {
  color: var(--secondary-background) !important;
}

.dropdown ul a:hover {
  color: var(--primary-color) !important;
}

/* Main styling */
main {
  width: 100%;
  max-width: var(--content-width);
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3rem;
}

main > section {
  transition: opacity 0.8s, transform 0.8s;
  transition-delay: 0.3s;
}

main > section:not(.visible) {
  opacity: 0;
  transform: translateY(2rem);
}

main > section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero styling */
header.slogan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
}

header.slogan img {
  width: min(40vw, 20rem);
}

header.slogan > section:not(section.logo) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

p.slogan {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

/* Header box styling */

header.box {
  position: relative;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  background: var(--secondary-background);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
}

header.box:has(img) {
  background: linear-gradient(90deg, #174f84 50%, #174f8488 100%);
}

header.box > p,
header.box > h1 {
  max-width: 60%;
}

header.box > img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  z-index: -1;
  object-fit: cover;
  object-position: 50% 10%;
  filter: grayscale(100%);
}

/* Partner section styling */
section.partners {
  padding: 2rem;
  box-sizing: border-box;
  background-color: #f9fbff;
  border-radius: var(--border-radius);
  overflow: hidden;
}

section.partners > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 2rem;
  width: 100%;
  transition: 0.3s;
  position: relative;
  min-height: 6.5rem;
}

section.partners > div > article {
  height: 6rem;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}

section.partners > div > article:hover {
  transform: scale(1.05);
}

section.partners img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* People styling */
section.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1rem;
}

section.people > article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: white;
}

/* Blog post styling */

section.posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

section.posts > a {
  color: var(--body-color);
  text-decoration: none;
}

section.posts > a:hover {
  color: var(--body-color);
}

section.posts article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  gap: 1rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-sizing: border-box;
  transition: transform var(--transition-length);
}

section.posts article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  box-sizing: border-box;
  padding: 1rem 0;
}

section.posts article:hover {
  transform: scale(1.025);
}

section.posts article > img {
  border-radius: calc(var(--border-radius) / 1.5);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.posts article h3 {
  color: var(--primary-color);
}

section.posts article footer {
  display: flex;
  gap: 0.5rem;
  color: var(--dimmed-text);
}

section.newest-posts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

section.newest-posts a {
  text-decoration: none;
  color: var(--body-color);
}

section.newest-posts a:hover {
  color: var(--body-color);
}

section.newest-posts article {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: white;
  transition: transform var(--transition-length);
  box-sizing: border-box;
}

section.newest-posts article:hover {
  transform: scale(1.025);
}

section.newest-posts article > img {
  width: 100%;
  object-fit: cover;
  height: 10rem;
  border-radius: calc(var(--border-radius) / 1.5);
}

section.newest-posts article > h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

section.newest-posts article > footer {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  color: var(--dimmed-text);
}

/* Aside styling for previous seasons page */
section.aside {
  width: 100%;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
}

section.aside > section.normal {
  width: 100%;
  position: relative;
}

.pb-dynamic {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
}

.pb-dynamic .content-main {
  padding: 0 !important;
  overflow-x: auto;
}

section.aside > aside {
  width: 100%;
  height: fit-content;
  padding: var(--padding);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  background-color: white;
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

section.aside > aside > button {
  z-index: 2;
}

section.aside > aside > nav {
  width: 100%;
}

section.aside > aside > nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

section.aside > aside > nav ul li a {
  text-decoration: none;
  color: var(--body-color);
}

#seasons-select {
  padding: 0.6rem 0.8rem;
  border-radius: var(--border-radius);
  transition: var(--transition-length);
  font-weight: 500;
  border: none;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  background-color: var(--secondary-background);
  color: white;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1rem;
}

/* Teams grid styling */
section.teams {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}

section.teams > a {
  text-decoration: none;
}

section.teams article:hover {
  transform: scale(1.025);
}

section.teams article {
  display: flex;
  flex-direction: column;
  gap: calc(var(--padding) / 1.5);
  padding: calc(var(--padding) / 1.5);
  border-radius: var(--border-radius);
  background-color: white;
  box-sizing: border-box;
  transition: transform var(--transition-length);
}

section.teams article > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12rem;
}

section.teams article > div > img {
  object-fit: contain;
  display: block;
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
}

section.teams article > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-background);
  padding: calc(var(--padding) / 2);
  border-radius: calc(var(--padding) / 1.5);
  box-sizing: border-box;
  color: white;
}

section.teams article > header img {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

/* Players list styling */

.players {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1rem;
}

/* Post nav styling */

main > nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Loading animation image styling */
div.loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.loading > img {
  width: 30rem;
  height: 2rem;
  object-fit: cover;
  align-self: center;
}

/* Responsive styling */
@media (max-width: 1285px) {
  div.pb-dynamic td.team {
    max-width: 3.5em;
  }
}

@media (max-width: 1024px) {
  div.pb-dynamic td.team {
    max-width: 10em;
  }

  body > header nav {
    position: fixed;
    background-color: var(--secondary-background);
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    max-width: 15rem;
    padding: 1.5rem;
    box-sizing: border-box;
    transition: var(--transition-length);
    transform: translateX(100%);
    z-index: 2;
    overflow-y: auto;
  }
  body > header nav.active {
    transform: translateX(0);
  }
  body > header nav.active > ul {
    opacity: 1;
    transform: translateY(0);
  }
  body > header nav > ul {
    flex-direction: column;
    opacity: 0;
    transition: calc(var(--transition-length) * 1.75);
    transform: translateY(1rem);
  }
  body > header button.mobile-menu {
    display: block;
    background-color: transparent;
    color: var(--body-color);
    border-radius: 0;
    border: none;
    padding: 0;
  }
  body > header nav > ul > li:first-child {
    display: flex;
    justify-content: flex-end;
  }
  body > header button.mobile-menu i {
    font-size: 1.5rem;
    cursor: pointer;
  }
  body > header nav button.mobile-menu {
    color: white;
  }
  body > header a {
    font-size: 1.5rem;
    color: white !important;
  }
  body > header a:hover {
    color: white !important;
  }

  .dropdown > a {
    flex-direction: row-reverse;
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }

  .dropdown > a::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
      no-repeat center;
    background-size: contain;
    transition: transform var(--transition-length);
  }

  .dropdown.show > a::before {
    transform: rotate(180deg);
  }

  .dropdown ul {
    margin-top: 1rem;
  }

  .dropdown div {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transform: initial;
    transition: max-height var(--transition-length),
      opacity var(--transition-length), visibility var(--transition-length);
  }

  .dropdown.show > div {
    max-height: 30rem;
  }

  section.aside {
    grid-template-columns: 1fr;
  }
  section.aside > aside {
    position: static;
  }

  body > footer > div {
    flex-direction: column;
    gap: 2rem;
  }

  section.normal .info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  section.normal .info-box > img {
    margin-top: 1rem;
    height: 10rem;
  }

  header.box:has(img) {
    background: #174f84dd;
  }

  header.box > img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
  }

  header.box {
    gap: 1rem;
  }

  header.box > p,
  header.box > h1 {
    max-width: 100%;
  }

  header.slogan img {
    display: none;
  }

  main {
    padding: 1.5rem;
    padding-bottom: 3rem;
    gap: 3rem;
  }

  section.image {
    grid-template-columns: 1fr;
    grid-template-rows: auto fit-content;
    gap: 1.5rem;
  }

  section.image > section {
    padding: 0;
  }

  section.image > img {
    grid-row: 2;
    max-height: 15rem;
  }

  section.posts article {
    display: flex;
    flex-direction: column;
  }

  section.posts article > div {
    gap: 1rem;
    padding: 0;
  }

  section.posts article > img {
    height: min(40vw, 20rem);
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  section.normal .images > img,
  section.normal > p:has(img) > img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  section.normal .images > img,
  section.normal > p:has(img) > img {
    height: 15rem;
  }
}

@media (max-width: 425px) {
  header.slogan {
    flex-direction: column;
    gap: 2rem;
    justify-items: center;
    padding-top: 0;
  }
  header.slogan img {
    width: 90%;
    display: block;
  }
}
