@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html,
body {
  position: relative;
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  color: #333;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 18px;
}
 
a {
  color: #75787e;
  text-decoration: none;
}

h1, h2 {
  margin: 0;
}

h2 {
  font-weight: 700;
font-size: 34px;
color: #241624;
}

a:hover {
  text-decoration: underline;
}

label, img {
  display: block;
}

article {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px;
}

label,
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;  
}

button {
  appearance: none;
  outline: none;
  background: none;
}

.button {
  display: block;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  width: 150px;
  padding: 16px 0;
}

.button--secondary {
  background: #CF475B;
  color: #FFF;
  border-color: #CF475B;
}


.button--secondary:visited {
  color: #FFF;
}