* {
  box-sizing: border-box;
}

body {
  --primary: #3BE2C0;
  --link: #1141b3;
  --light: #eff4f7;
  --grey: #ccc;
  --dark: #5c5c5c;
  --error: red;
  --font: "Poppins", sans-serif;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  background: #36384A;
}

a {
  color: var(--link);
}

hr {
  border: 0;
  border-top: 0.0875rem solid var(--grey);
}

.form {
  background: white;
  padding: 1.5rem;
  border-top: 0.25rem solid var(--primary);
  border-bottom: 0.25rem solid var(--primary);
  max-width: 40rem;
  box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.075);
  margin: 1rem auto;
  text-align: center;
}

h1 {
  margin-top: 0;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
  color: var(--dark);
}

label {
  display: block;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem;
  font-size: 0.875rem;
}

input {
  font-size: 1rem;
  padding: 1rem;
  margin-left: 0.5rem;
  border-radius: 0.25rem;
  border: 0.0875rem solid var(--grey);
}

.button {
  padding: 1.25rem 2rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2rem;
  background-color: var(--primary);
  color: black;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: inline-block;
}

.savings-container {
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.savings-title {
  display: none;
}

.savings-rate {
  font-size: 2rem;
  color: var(--primary);
}

.error {
  color: red;
}

#article {
  color: white;
  padding: 5% 25% 10% 25%;
}

#article p {
    color: white;

}

a {color: yellow;}