html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: Roboto, sans-serif;
  background: var(--dark-neutral);
  background-attachment: fixed;
  background-size: 100%;
}

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

:root {
  --white: #ffffff;
  --black: #1e1e1f;
  --text: #f5f5f5;
  --text-inner: #f5f5f5;
  --dark-neutral: #1e1e1f;
  --light-neutral: #eae3d5;
  --primary: #473262;
  --secondary: #3deaa9;
  --tertiary: #d72638;
  /* GRADIENTS */
  --primary-bg: linear-gradient(
    160deg,
    var(--primary) 55%,
    var(--secondary) 130%
  );
}

a,
a:hover {
  text-decoration: none;
  color: var(--secondary);
}

img {
  max-width: 100%;
}

.header-fixed {
  padding-top: 130px;
}

.outlined-cta {
  border: 1px solid var(--white);
  padding: 1rem;
  width: fit-content;
  margin: 1rem auto;
  display: block;
  color: var(--white);
  transition: 300ms;
  border-radius: 4px;
}

.outlined-cta:hover {
  background-color: var(--black);
  color: var(--secondary);
  border-color: var(--secondary);
}

.outlined-cta.align-left {
  margin: 1rem 0;
  text-align: left;
  width: 100%;
}

/* SUBSCRIBE FORM */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600");
