:root {
  --green: #10503c;
  --orange: #f25e30;
  --yellow: #f2b203;
  font-size: 16px;
  --headline-font: "dejanire-headline", serif;
  --body-font: "avenir-next-lt-pro, avenir-next-lt-pro-condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--green);
  color: white;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headline-font);
}

:not(h1, h2, h3, h4, h5, h6) {
  font-family: var(--body-font);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.25);
}

header img {
  padding: 0.8125rem 1.5rem;
}

header .link-button {
  padding: 0.5rem 2.5rem;
  margin: 0.8125rem 1.5rem;
}

nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  height: 100%;
}

ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #6a6a6a;
  height: 100%;
  align-items: center;
}

ul a {
  text-decoration: none;
  color: inherit;
  height: 100%;
}

li {
  position: relative;
  height: 100%;
  align-content: center;
}

li:hover:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #f2b203;
}

button {
  background: #f25e30;
  border: 2px solid transparent;
  color: white;
  font-weight: bold;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}

.link-button {
  background: #f25e30;
  border: 2px solid transparent;
  color: white;
  font-weight: bold;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  text-align: center;
}

.link-button:hover {
  cursor: pointer;
  background: white;
  border: 2px solid #363432;
  color: black;
}

button:hover {
  cursor: pointer;
  background: white;
  border: 2px solid #363432;
  color: black;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, -3.938rem + 15.833vw, 10.3125rem);
}

.headline {
  margin-top: 4rem;
}

h1 {
  margin: 0 0 0.625rem;
  color: #fff;
  text-align: center;
  font-family: var(--headline-font);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.subtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f2b203;
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8125rem;
  padding: 2.5rem;
  max-width: 33.5rem;
  width: 100%;
}

.raised {
  width: 100%;
  display: flex;
  padding: 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  align-self: stretch;
  border-radius: 0.5rem;
  background: #fff;
  margin: 0 auto;
}

.raised .link-button {
  padding: 0.5625rem 2rem;
  width: 100%;
}

h2 {
  color: #363432;
  text-align: center;
  font-family: var(--headline-font);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}

.muted {
  color: #2c9382;
  font-family: var(--body-font);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
}

.private-portal {
  background: #fff;
  color: black;
  font-size: 0.75rem;
  font-family: var(--body-font);
}

.private-portal a {
  color: #363432;
  line-height: 1.5rem;
}

strong {
  display: block;
}

.already-customer {
  max-width: 28.5625rem;
  color: #fff;
  font-family: "Avenir Next";
  font-size: 0.75rem;
  line-height: 1.375rem;
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-top: clamp(2rem, -3.938rem + 15.833vw, 10.3125rem);
  font-size: 0.875rem;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 740px) {
  ul {
    display: none;
  }
}
