@charset "UTF-8";
/*GENERAL*/
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background: hsl(218, 23%, 16%);
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}

main {
  margin: 0 auto;
  height: 95%;
  padding-top: 20%;
}

#container {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-around;
  align-items: center;
  background: hsl(217, 19%, 24%);
  height: 350px;
  width: 500px;
  margin: 0 auto;
  padding-top: 0;
  border-radius: 15px;
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 100;
}
#container .loader {
  color: hsl(193, 38%, 86%);
}
#container h6 {
  color: hsl(150, 100%, 66%);
  letter-spacing: 5px;
  padding-top: 20px;
  text-transform: uppercase;
}
#container blockquote {
  color: hsl(193, 38%, 86%);
  margin-top: 30px;
  padding: 0 50px;
  font-size: 1.75rem;
  font-weight: 800;
  quotes: "“" "”" "‘" "’";
}
#container blockquote::before {
  content: open-quote;
}
#container blockquote::after {
  content: close-quote;
}
#container .divider-d {
  margin-bottom: 40px;
}
#container .divider-m {
  display: none;
}
#container button {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  border: none;
}
#container .dee {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(150, 100%, 66%);
  position: absolute;
  bottom: -30px;
  height: 60px;
  width: 60px;
  border-radius: 100%;
}
#container .dee :active :link :visited :focus {
  border: none;
}
#container .dee :hover {
  box-shadow: 0 0 60px 15px hsl(150, 100%, 66%);
}

footer {
  margin: 10px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}
footer .attribution {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: lighter;
  color: hsl(0, 0%, 100%);
}
footer a {
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 499px) {
  #container {
    width: 350px;
  }
  #container blockquote {
    padding: 0 20px;
  }
  #container .divider-d {
    display: none;
  }
  #container .divider-m {
    display: block;
    margin-bottom: 40px;
  }
}

/*# sourceMappingURL=styles.css.map */
