@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap");

:root {
  /* PRIMARY COLORS */
  --light-cyan: hsl(193, 38%, 86%);
  --neon-green: hsl(150, 100%, 66%);

  /* NEUTRAL COLORS */
  --grayish-blue: hsl(217, 19%, 38%);
  --dark-grayish-blue: hsl(217, 19%, 24%);
  --dark-blue: hsl(218, 23%, 16%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  background-color: var(--dark-blue);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 100%;
}
.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 50px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

main {
  display: flex;
  flex-direction: column;
  width: min(600px, 90%);
  padding: 50px 50px 80px 50px;
  background-color: var(--dark-grayish-blue);
  color: var(--light-cyan);
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  gap: 30px;
  position: relative;
}

main h2 {
  text-align: center;
  font-size: 1.75rem;
}

main h1 {
  color: var(--neon-green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  /* margin-bottom: 30px; */
}

main img {
  width: 100%;
}

main button {
  width: fit-content;
  padding: 20px 22px;
  border-radius: 50%;
  border: none;
  background-color: var(--neon-green);
  position: absolute;
  bottom: -32px;
  cursor: pointer;
}

main button:hover {
  box-shadow: 0px 3px 15px var(--neon-green);
}

@media (max-width: 576px) {
  main {
    padding: 50px 20px 80px 20px;
  }
}
