/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src:
    local(''),
    url('/fonts/roboto-v29-latin-300.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('/fonts/roboto-v29-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src:
    local(''),
    url('/fonts/roboto-v29-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('/fonts/roboto-v29-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src:
    local(''),
    url('/fonts/roboto-v29-latin-500.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('/fonts/roboto-v29-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src:
    local(''),
    url('/fonts/roboto-v29-latin-700.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('/fonts/roboto-v29-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src:
    local(''),
    url('/fonts/roboto-v29-latin-900.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url('/fonts/roboto-v29-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
  background: rgb(245, 248, 251);
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.appbar {
  background-color: #333333;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.appbar img {
  height: 2rem;
}

.btn-primary {
  background-color: #00b9f2;
  border-color: #00ace0;
}

.btn-primary:hover {
  background-color: #00ace0;
  border-color: #00a0d1;
}

.banner {
  border-radius: 0.35rem;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: top;
}

section {
  margin-top: 3rem;
  padding: 4rem 0.5rem;
  width: 100%;
  background-color: #eff2f7;
}

.page-container {
  position: relative;
  min-height: 100vh;
}

.content-wrap {
  padding-bottom: 264px; /* Footer height */
}

/* https://www.freecodecamp.org/news/how-to-keep-your-footer-where-it-belongs-59c6aa05c59c/ */
footer {
  padding: 2rem 2rem;
  width: 100%;
  height: 264px;
  background-color: #252525;
  color: #dbdbdb;
  display: flex;
  position: absolute;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

p {
  margin-bottom: 0;
}

.step {
  border-radius: 100%;
  border: solid 2px black;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.step.completed {
  background-color: #2ecc71;
  color: white;
}

.step.current {
  background-color: #00b9f2;
  color: white;
}

.step h3 {
  margin: 0;
}
