:root {
  --clr-light-cyan: hsl(193, 38%, 86%);
  --clr-neon-green: hsl(150, 100%, 66%);
  --clr-dark-grayish-blue: hsl(217, 19%, 24%);
  --clr-dark-blue: hsl(218, 23%, 16%);

  --ff-primary: 'Manrope', sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Set core root default */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: var(--ff-primary);
  background-color: var(--clr-dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

main {
  background-color: var(--clr-dark-grayish-blue);
  padding: 2rem 2rem 5rem;
  width: 90%;
  max-width: 700px;
  text-align: center;
  border-radius: 15px;
  position: relative;
}

main > * + * {
  margin-top: 2rem;
}

main::after {
  content: '';
  width: 100px;
  height: 100px;
  background-image: url("img/kanye.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: 10px;
  z-index: -1;
}

.title {
  color: var(--clr-neon-green);
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 14px;
}

.quote {
  color: var(--clr-light-cyan);
  font-size: 22px;
  font-weight: 800;
}

.divider {
  margin-inline: auto;
}

.btn {
  cursor: pointer;
  background-color: var(--clr-neon-green);
  padding: 1.5rem;
  border-radius: 50px;
  border: none;
  position: absolute;
  left: calc(50% - 36px);
  bottom: -32px;
  transition: all .15s ease;
}

.btn > * {
  pointer-events: none;
}

@media (hover: hover) {
  .btn:hover {
    box-shadow: 0 0 40px 2px var(--clr-neon-green);
  }
}

@media only screen and (min-width: 600px) {
  .quote {
    font-size: 28px;
  }
}
