@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cairo:wght@200..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kumbh+Sans:wght@100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");

:root {
  --Light-Cyan: hsl(193, 38%, 86%);
  --Neon-Green: hsl(150, 100%, 66%);
  --Grayish-Blue: hsl(217, 19%, 38%);
  --Dark-Grayish-Blue: hsl(217, 19%, 24%);
  --Dark-Blue: hsl(218, 23%, 16%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background-color: var(--Dark-Blue);
  display: flex;
  width: 500px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: Manrope;
}

body main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--Dark-Grayish-Blue);
  padding: 20px;
  border-radius: 16px;
  position: relative;
}

body main h1 {
  font-size: 12px;
  color: var(--Neon-Green);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

body main q {
  margin: 20px 0 30px;
  font-size: 28px;
  color: var(--Light-Cyan);
  font-weight: 800;
  text-align: center;
}
body main > img {
  margin-bottom: 30px;
}
body main button {
  position: absolute;
  bottom: -25px;
  background-color: var(--Neon-Green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
}

body main button:hover {
  box-shadow: 0 0 15px 5px var(--Neon-Green);
  transform: scale(1.1);
}

@media (width <= 480px) {
  body {
    width: auto;
  }
  body main {
    width: -webkit-fill-available;
    margin: 0 10px;
  }
  body main > img {
    width: 350px;
    margin-bottom: 30px;
  }
  body main button {
    width: 60px;
    height: 60px;
    bottom: -30px;
  }
}
