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

:root {
  --background: #f0f0f0;
  --primary-color: #202632;
  --secondary-color: #313a49;
  --green-color: #55feac;
  --text-color: #c4e3e9;
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", sans-serif;
}

.container {
  padding: 3rem 2rem;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
}
.container .card {
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  background: var(--secondary-color);
  padding: 3rem;
  padding-bottom: 0;
}
p {
  font-size: small;
  color: var(--green-color);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  margin-bottom: 2rem;
}

h1 {
  text-align: center;
  color: var(--text-color);
  font-size: 24px;
  margin-bottom: 3rem;
}
img {
  width: 100%;
}
.hide-for-desktop {
  display: none;
}
.container .card button {
  background: var(--green-color);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  outline: 0;
  border: 0;
  padding: 0.8rem;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  transform: translateY(50%);
}

.container button:hover {
  box-shadow: 0px 0px 25px 10px rgb(85, 254, 172, 0.3);
}

/* FOOTER */
.footer {
  padding: 12px 20px;
  font-size: 1rem;
  background: var(--secondary-color);
  height: auto;
  text-align: center;
  color: var(--text-color);
}
.footer a {
  color: var(--green-color);
  text-decoration: none;
}
.footer a:hover {
  border-bottom: 1px solid var(--green-color);
}
/*Mobile Responsive */
@media screen and (max-width: 415px) {
  .card {
    padding: 1.75rem;
    padding-bottom: 0;
  }

  .advice-id {
    margin-bottom: 1.5rem;
  }

  .hide-for-mobile {
    display: none;
  }

  .hide-for-desktop {
    display: block;
  }
}
