:root {
  --red: orangered;
  --orange: darkorange;
  --lightgreen: mediumseagreen;
  --green: seagreen;
  --light: rgb(251, 253, 251);
  --dark: rgb(227, 231, 227);
  --background: rgb(244, 247, 244);
  --grey: darkgrey;
}

* {
  transition: all 0.2s ease-in-out;
}

html,
body {
  margin: 0;
  background-color: var(--background);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-size: 110%;
  gap: 1.5rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::selection {
  background-color: var(--green);
  color: var(--light)
}

h1 {
  font-size: 300%;
  font-weight: bolder;
  margin: 0;
  padding-bottom: 2.5%;
  background: linear-gradient(var(--green) 0 7.5px, transparent 0) no-repeat left bottom / 35% 7.5px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.decorated {
  color: var(--lightgreen);
  font-weight: bold;
}

section.banner {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  margin: 3rem;
  gap: 3rem;
}

section.banner > div:first-child {
  flex-grow: 3;
}

section.banner > div:last-child {
  flex-grow: 2;
  min-width: 30vw;
  z-index: 5;
}

.mute {
  color: var(--grey);
}

i {
  color: var(--green);
  font-size: 150%;
}

i:hover {
  color: var(--lightgreen);
}

.bg-aesthetic {
  position: fixed;
  bottom: 0;
  right: 0;
  transform: translateX(30%) translateY(30%) scale(1.5);
  overflow: hidden;
  pointer-events: none;
  filter: opacity(0.5)
}

@media (max-width: 480px) {
  h1 {
    font-size: 200%;
    padding-bottom: 5%;
  }
  img.bannerImg {
    display: none;
  }
  section.banner > div:first-child {
    flex-grow: unset;
  }
  section.banner {
    flex-direction: column;
    margin: 0 1.5rem;
  }
}
