@charset "UTF-8";

/* Default light theme */
:root {
  color-scheme: light dark;

  --background: hsl(0, 0%, 98%);
  --background-truck: hsl(0, 0%, 95%);
  --background-benefits: hsl(220, 7%, 84%);
  --background-benefits-card: hsl(221, 25%, 28%);
  --background-video: hsl(222, 89%, 7%);
  --background-hero-overlay: hsl(0, 0%, 100%, .75);
  --background-header: hsla(0, 0%, 98%, .98);
  --background-banner: hsl(0, 0%, 94%);

  --text: var(--color-black);
  --text-inverted: var(--color-white);

  --color-white: hsl(0, 0%, 98%);
  --color-white-dim: hsl(0, 0%, 90%);
  --color-black: hsl(0, 0%, 8%);
  --color-black-dim: hsl(0, 0%, 10%);
  --color-trans50: hsla(0, 0%, 0%, .5);

  --color-primary: hsl(12, 87%, 51%);
  --color-primary-hover: hsl(12, 87%, 41%);
  --color-primary-active: hsl(12, 87%, 26%);
  --color-secondary: hsl(219, 100%, 26%);
  --color-secondary-hover: hsl(219, 100%, 16%);
  --color-secondary-active: hsl(219, 100%, 1%);

  --color-gradient-1: #ff5000;
  --color-gradient-2: #ff884c;
  --color-gradient-3: #ff6325;
  --color-gradient-4: #555353;
  --color-gradient-5: #616161;
  --color-gradient-6: #222121;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --background: hsl(0, 0%, 10%);
    --background-truck: hsl(0, 0%, 12%);
    --background-benefits: hsl(0, 0%, 12%);
    --background-benefits-card: hsl(12, 50%, 16%);
    --background-video: hsl(12, 50%, 16%);
    --background-hero-overlay: hsl(0, 0%, 0%, .75);
    --background-header: hsla(0, 0%, 8%, .98);
    --background-banner: hsl(0, 0%, 12%);

    --text: var(--color-white-dim);
    --text-inverted: var(--color-black);
    --color-white: hsl(0, 0%, 98%);
    --color-white-dim: hsl(0, 0%, 90%);
    --color-black: hsl(0, 0%, 8%);
    --color-black-dim: hsl(0, 0%, 10%);
    --color-trans50: hsla(0, 0%, 98%, .5);

    --color-primary: hsl(219, 100%, 51%);
    --color-primary-hover: hsl(219, 100%, 26%);
    --color-primary-active: hsl(219, 100%, 16%);
    --color-secondary: hsl(12, 87%, 51%);
    --color-secondary-hover: hsl(12, 87%, 41%);
    --color-secondary-active: hsl(12, 87%, 26%);

    --color-gradient-1: #000c57;
    --color-gradient-2: #2a448d;
    --color-gradient-3: #031d50;
    --color-gradient-4: #393939;
    --color-gradient-5: #464545;
    --color-gradient-6: #000000;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: 1.45;
  margin: 1rem 0 0 0;
}

h1 {
  font-size: 200%;
  font-weight: 800;
}

h2 {
  font-size: 160%;
  font-weight: 700;
}

h3 {
  font-size: 120%;
  font-weight: 600;
}

h4 {
  font-size: 110%;
  font-weight: 600;
}

h5 {
  font-size: 105%;
  font-weight: 500;
}

h6 {
  font-size: 100%;
  font-weight: 500;
}

p {
  font-size: 100%;
  font-weight: 400;
}

ul {
  margin: 1rem 0 0 1.25rem;
  padding: 0;
}

li {
  margin: 0.25rem 0 0 0;
  padding: 0;
}

li:first-child {
  margin-top: 0;
}

strong,
b {
  font-weight: 600;
}

img {
  height: auto;
  max-width: 100%;
}

.block {
  display: block;
}

.fillImg img {
  border-radius: 0.5rem;
  height: auto;
  width: 100%;
}

.flexNoWrap {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

@media only screen and (min-width: 44rem) {
  .flexNoWrap {
    flex-flow: row nowrap;
  }
}

.flexNoWrap .flexItem {
  margin: 1rem 0 0 0;
  width: 100%;
}

@media only screen and (min-width: 44rem) {
  .flexNoWrap .flexItem:not(:nth-of-type(1)) {
    margin: 1rem 0 0 1rem;
  }
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0 0 1.5rem 0;
  position: relative;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* body,
button,
input,
keygen select,
textarea {
  font-family: -apple-system-body, -apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;
} */

* {
  box-sizing: border-box;
}

*:focus-visible {
  background: var(--color-secondary) !important;
  color: var(--color-white) !important;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem 0.25rem var(--color-secondary-hover);
  outline: none;
}

*:focus-visible:hover {
  background: var(--color-secondary-hover) !important;
  box-shadow: 0 0 0.5rem 0.5rem var(--color-secondary);
  color: var(--color-black) !important;
  outline: none;
}

.button {
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin: 0 0 0 0.1rem;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  vertical-align: middle;

}

@media only screen and (min-width: 44rem) {
  .button {
    font-weight: 700;
    padding: 0.6rem 1.25rem;
  }
}

.button.selected {
  text-decoration: underline;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
  visibility: hidden;
}

.outbound {
  margin: 0;
  padding: 0;
}

.outbound a.button {
  display: inline-block;
  margin: 1rem 0.5rem 0 0;
  text-decoration: none;
}

header {
  align-content: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  padding: 1.5rem;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  max-width: 120rem;
}

@media only screen and (min-width: 20rem) {
  header {
    flex-flow: row nowrap;
  }
}

header span.logo {
  align-self: center;
  display: inline-block;
  margin: 0 auto;
  line-height: 1;
  vertical-align: middle;
}

@media only screen and (min-width: 20rem) {
  header span.logo {
    margin: unset;
  }
}

header span.logo img {
  aspect-ratio: 26/3;
  min-width: 200px;
}

header nav {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  gap: 3rem;
  justify-content: center;
  margin: 1rem 0 0 0;
  width: clamp(10rem, 100%, 40rem);
}

@media only screen and (min-width: 20rem) {
  header nav {
    justify-content: flex-end;
    margin: 0;
    text-align: left;
  }
}

header nav p {
  margin: 0;
}

header nav .outbound a.button {
  display: block;
  margin: 0;
}

@media only screen and (min-width: 44rem) {
  header nav .outbound a.button {
    font-size: 1.25rem;
  }
}

header nav .telephone span {
  display: none;
  line-height: 1;
  text-transform: uppercase;
  visibility: hidden;
}

@media only screen and (min-width: 44rem) {
  header nav .telephone span {
    display: block;
    visibility: visible;
  }
}

header nav .telephone a {
  display: block;
}

header nav .telephone a.button {
  font-weight: 600;
  text-decoration: none;
}

@media only screen and (min-width: 44rem) {
  header nav .telephone a.button {
    font-size: 2rem;
    line-height: 0.7;
    margin: 0;
    padding: 0;
    text-decoration: underline;
  }
}

header nav .telephone a.button:before {
  content: "📱";
  font-size: 0.9rem;
  vertical-align: middle;
}

@media only screen and (min-width: 36rem) {
  header nav .telephone a.button:before {
    margin-right: 0.5rem;
  }
}

@media only screen and (min-width: 44rem) {
  header nav .telephone a.button:before {
    content: "";
    margin-right: 0;
  }
}

header nav .telephone a span {
  display: none;
  visibility: hidden;
}

@media only screen and (min-width: 36rem) {
  header nav .telephone a span {
    display: inline-block;
    text-decoration: none;
    visibility: visible;
  }
}

@media only screen and (min-width: 44rem) {
  header nav .telephone a span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}

.site-banner {
  width: 100%;
  background-color: var(--background-banner);
  text-align: center;
  padding: .5rem 0;
  box-shadow: 0 10px 15px var(--color-trans50);
  position: fixed;
  z-index: 3;
}

.site-banner p {
  margin: 0;
}

@media only screen and (min-width: 44rem) {
  .site-banner {
    display: none;
  }
}

.site-banner .telephone a {
  text-decoration: none;
  font-weight: 700;
}

main {
  margin: 7.5rem auto 0 auto;
  max-width: 120rem;
}

@media only screen and (min-width: 20rem) {
  main {
    margin: 5rem auto 0 auto;
  }
}

@media only screen and (min-width: 44rem) {
  main {
    margin: 5.9rem auto 0 auto;
  }
}

main section {
  align-items: center;
  
}

main section:after {
  background: unset;
  content: unset;
}

.card-section {
  background-color: var(--background-benefits);
  display: grid;
  place-items: center;
}

.card {
  display: flex;
  background-color: var(--background-benefits-card);
  border-radius: 1rem;
  overflow: hidden;
  margin: 4rem 2rem 4rem 2rem;
  gap: 3rem;
}

.card-image {
  flex: 1;
  min-width: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  flex: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white-dim);
}

.card-content ul {
  font-size: 16pt;
}

/*card image animation*/
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card-image {
    transition:
      transform 0.6s ease
  }

  .card-image:hover,
  .card-image:focus-visible {
    transform: scale(1.025);
  }
}

@media (max-width: 44rem) {
  .card {
    flex-direction: column;
    gap: 0;
    margin: unset;
    border-radius: unset;
  }

  .card-image {
    height: 300px;
  }

  .card-content {
    padding-bottom: 4rem;
  }
}

.list-section .title {
  font-weight: 600;
  margin: 2rem;
}

.list-container {
  display: flex;
  gap: 1rem;
  margin: 1% 10% 4% 10%;
}

.list-column {
  flex: 1;
}

.list-column li {
  padding: 3px 0;
  font-size: 16pt;
}

@media (max-width: 44rem) {
  .list-container {
    flex-direction: column;
    margin: 1rem 2rem 3rem 2rem;
  }
}

.video-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 10%;
  background-color: var(--background-video);
  color: var(--color-white-dim);
  width: 100%;
  max-height: 430px;
  margin-bottom: 0;
}

.video-section .video-container {
  display: grid;
  place-items: center;
  flex: 1;
}

.side-video {
  max-width: 80%;
  height: auto;
  border-radius: 1rem;
}

.video-section .text-content {
  flex: 1;
}

.video-section .text-content h1 {
  line-height: 1.25;
}

.video-section .text-content p {
  font-size: 16pt;
}

@media (max-width: 60rem) {
  .video-section {
    flex-direction: column;
    gap: unset;
    max-height: unset;
  }

  .video-section .video-container,
  .video-section .text-content {
    width: 100%;
  }

  .side-video {
    max-width: 100%;
    width: 100%;
    margin-top: 1rem;
  }

  .text-content h1 {
    font-size: 30px;
  }
}


footer {
  margin: 2rem auto 0 auto;
  text-align: center;
  width: 96%;
}

footer p {
  font-size: clamp(0.8rem, 0.75vw, 0.9rem);
  margin: 5px;
}

@media only screen and (min-width: 44rem) {
  footer {
    max-width: 80rem;
  }
}

/* everything below had "and (prefers-color-scheme: light)" in the media query.
   we aren't implementing dark mode yet, so they were removed for the time being */
@media screen {
  html {
    background: var(--background);
    color: var(--text);
  }

  body {
    background: var(--background);
    color: var(--text);
  }

  body a:not(.button):link {
    color: var(--color-primary);
  }

  body a:not(.button):visited {
    color: var(--color-secondary);
  }

  body a:not(.button):visited:hover {
    color: var(--color-secondary-hover);
  }

  body a:not(.button):visited:active {
    color: var(--color-secondary-active);
  }

  body a:not(.button):hover {
    color: var(--color-primary);
  }

  body a:not(.button):active {
    color: var(--color-primary-active);
  }

  body .button {
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
  }
}

@media screen and (hover: hover) {
  body .button:hover {
    background-color: var(--color-secondary-hover);
    color: var(--color-white);
  }
}

@media screen {
  body .button:active {
    background: var(--color-secondary-active);
    color: var(--color-white);
  }
}

@media screen {
  body .button.selected {
    color: var(--color-black);
  }
}

@media screen and (hover: hover) {
  body .button.selected:hover {
    color: var(--color-white);
  }
}

@media screen {
  body .button.selected:active {
    color: var(--color-white);
  }
}


@media screen {
  body header {
    background: var(--background-header);
    border-bottom: 0.1rem solid var(--background-header);
    color: var(--text);
  }

  body header nav .telephone a {
    display: block;
  }
}

@media only screen and (min-width: 44rem) {
  body header nav .telephone a.button {
    background: unset;
    color: unset;
  }

  body header nav .telephone a.button:link {
    color: var(--text);
  }

  body header nav .telephone a.button:visited {
    color: var(--text);
  }

  body header nav .telephone a.button:visited:hover {
    color: var(--color-primary);
  }

  body header nav .telephone a.button:visited:active {
    color: var(--color-primary-active);
  }

  body header nav .telephone a.button:hover {
    color: var(--color-primary);
  }

  body header nav .telephone a.button:active {
    color: var(--color-primary-active);
  }
}

@media only screen and (max-width: 44rem) {

  body .site-banner .telephone a:link,
  body .site-banner .telephone a:visited {
    color: var(--text);
  }

  body .site-banner .telephone a:hover,
  body .site-banner .telephone a:visited:hover {
    color: var(--color-primary);
  }

  body .site-banner .telephone a:active,
  body .site-banner .telephone a:visited:active {
    color: var(--color-primary-active);
  }
}

@media only screen and (max-width: 44rem) {
  .form-section .form-input .telephone a:link,
  .form-section .form-input .telephone a:visited {
    color: var(--color-white);
  }
}

@media screen {
  body footer a.telephone:link {
    color: var(--text);
  }

  body footer a.telephone:visited {
    color: var(--text);
  }

  body footer a.telephone:visited:hover {
    color: var(--color-primary);
  }

  body footer a.telephone:visited:active {
    color: var(--color-primary-active);
  }

  body footer a.telephone:hover {
    color: var(--color-primary);
  }

  body footer a.telephone:active {
    color: var(--color-primary-active);
  }
}

.hero-section {
  height: 450px;
  position: relative;
  overflow: hidden;
  margin: 0;
display: flex;
  flex-direction: column;
  padding: 1rem;
    background-image: url('https://staticwebcdn.hobbylobby.com/drive/hero.webp');
  background-size: contain;
}

.hero-section .hero-image,
.hero-section .hero-overlay,
.hero-section .hero-content {
  position: absolute;

}



.hero-section .hero-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-hero-overlay);
  z-index: 1;
}

.hero-section .hero-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 2;

}

.hero-section .hero-content h1 {
  font-size: 57pt;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  object-fit: contain;
}

.hero-section .hero-content p {
  font-size: 25pt;
  font-weight: 150;
  display: flex;
  flex-direction: column;
  object-fit: contain;
}

.truck-section {
  background: var(--background-truck);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30%;
  align-items: stretch;
  height: auto;
  text-align: left;
  position: relative;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
}

.truck-section .truck-text {
  text-align: left;
  margin-left: 15%;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  justify-self: center;
}

.truck-section h1 {
  font-size: 32pt;
  font-weight: 510;
  line-height: 1.25;
}

.truck-section p {
  font-size: 16pt;
  font-weight: 500;
}

.truck-section .truck-div {
  display: flex;

  position: relative;

  overflow: hidden;
  width: 100%;
  height: auto;

  align-items: center;
  justify-content: center;
  justify-self: end;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.45) 44.54%, rgba(255, 255, 255, 0.45) 46.64%, rgba(255, 255, 255, 0.18) 55.04%), 
              linear-gradient(var(--color-gradient-1) 1%, var(--color-gradient-2) 28%, var(--color-gradient-3) 60%, 
              var(--color-gradient-4) 60.5%, var(--color-gradient-5) 75%, var(--color-gradient-6));
}


.truck-section .truck-box {
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  justify-self: stretch;
  align-content: center;
  width: 100%;
  height: auto;
  z-index: 1;
}

.truck-section .truck-box .truck-div .truck-stripe {
  clip-path: polygon(0 0, 100% 0, 15% 100%, 0% 100%);
  width: 25%;
  height: 100%;
  background: var(--background-video);
  border: 5px solid var(--background-video);
  z-index: 2;
}

.truck-section .truck-graphic {
  position: relative;
  z-index: 1;
  display: block;
  width: 75%;
  height: auto;
  align-content: center;
  transform: translateX(-27%);
}

.form-section {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: left;
  margin: 4rem 5rem 5rem 1rem;
  margin-left: 10%;
}

.form-section h1 {
  font-size: 32pt;
  font-weight: 510;
  line-height: 1.25;
  
  
}

.form-section p {
  font-size: 16pt;
  font-weight: 500;
}

.form-section .form-text {
  flex: 2;
 
}

.form-section .form-input {
  flex: 1;
}

.group-banner {
  display: block;
  place-items: center;
  align-items: stretch;
  
  overflow: hidden;
  width: 100%;
  
}
.group-banner .group-img {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 2rem 0 0 2rem;
  object-fit: contain;
  display: block;
}

@media only screen and (max-width: 60rem) {

  .group-banner {
    height: auto;
    overflow: hidden;
    width: 100%;
    align-items: stretch;
    display: block;
  }
  .group-banner .group-img {
    width: 100%;
    object-fit: contain;
    display: block;
    margin-top: 0px;
    padding: 0rem;
  }
}

@media only screen and (max-width: 44rem) {
  .hero-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    position: relative;
    padding: 1rem;
  }

  .hero-section .hero-content {
    width: 90%;
  }

  .hero-section .hero-content h1 {
    font-size: 37pt;
    align-self: center;
  }

  .hero-section .hero-content p {
    font-size: 17pt;
    align-self: center;
  }
}

@media screen and (max-width: 60rem) {
  .truck-section {
    margin-top: 1.5px;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
  }

  .truck-section .truck-div {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    order: -1;
    width: 115%;
    height: 325px;


  }

  .truck-section .truck-box {
    display: flex;

    position: relative;

    overflow: hidden;
    width: 100%;
    height: auto;

    align-items: center;
    justify-content: center;
    order: -1;
    width: 115%;
    height: auto;
    clip-path: none;
    transform: none;
  }

  .truck-section .truck-text {
    width: 100%;
    max-width: none;
    margin: auto;
    padding: 0 2rem 3em 2rem;
  }

  .truck-section .truck-text h1 {
    font-size: 25pt;
  }

  .truck-section p {
    width: 100%;
    font-size: 16pt;
  }

  .truck-section .truck-stripe {
    display: none;
  }

  .truck-section .truck-graphic {
    margin-top: 1px;
    width: 90%;
    max-width: none;
    transform: translateX(-12%);
    height: auto;
  }
}

@media screen and (max-width: 62rem) {
   .hero-section .hero-image {
    content: normal;
    object-fit: cover;
  }
}

@media screen and (max-width: 60rem) {
  .form-section {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 3rem 2rem;
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: auto;
  }

  .form-section h1 {
    display: flex;
    flex-direction: column;
    font-size: 25pt;
  }

  .form-section p {
    display: flex;
    flex-direction: column;
    font-size: 16pt;
  }

  .form-section div p {
    display: flex;
    align-items: center;
  }

  .form-section .form-text {
    margin-left: unset;
  }

  .form-section .telephone a:link {
    color: var(--color-white)
  }

}

@media screen and (max-width: 44rem) {

  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  header nav .telephone a.button {
    display: none;
    flex-direction: row;
  }

  header span.logo {
    display: block;
    height: auto;
  }

  header span.logo img {
    display: inline-block;
    min-width: 150px;
    height: auto;

  }

  header nav {
    display: flex;
    gap: 0;
  }

  header nav .outbound a.button {
    display: inline-block;
    padding: 0.5em 2rem;
  }
}


@media print {

  p.embedtool,
  video,
  aside,
  .button {
    display: none;
    visibility: hidden;
  }

  header,
  main,
  aside {
    margin: 1.5rem 0 0 0;
    max-width: unset;
    padding: 0;
    position: relative;
  }

  footer {
    max-width: unset;
    padding: 0;
    position: relative;
  }

  header h1 {
    display: block;
    visibility: visible;
  }

  nav {
    display: block;
  }

  nav a {
    background: transparent;
    color: black;
  }

  main blockquote {
    border-left: 2px solid black;
  }
}

.error-page {

  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-image: url('https://staticwebcdn.hobbylobby.com/drive/hero.webp');
  background-size: contain;
  text-align: center;
  justify-content: center;
}

 .error-page .error-screen, .error-page .error-message {
position: absolute;
}


.error-page h1, 
.error-page h2,
.error-page p,
.error-page a {
  padding: .5rem 2rem ;
}

.error-page .error-screen {
   top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-hero-overlay);
  z-index: 1;
}

.error-page .error-message {
 top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  display: inline-block;
  z-index: 2;
}

.error-page h1 {
  font-size: 100pt;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  object-fit: contain;
  
}

.error-page h2 {
  font-size: 30pt;
  font-weight: 550;
  display: flex;
  flex-direction: column;
  object-fit: contain;

}

.error-page p {
  font-size: 25pt;
  font-weight: 375;
  display: flex;
  flex-direction: column;
  object-fit: contain;
}

.error-page a.button {
  padding: .5em 2em;
  display: inline-block;
  font-size: 20px;
  position: relative;
  margin: 0; 
}


@media screen and (max-width: 62rem) {
  .error-page {
    width: 100%;
    overflow: hidden;
    margin-top: -20px;
    position: relative;
    padding: 1rem;
    height: 470px;
  
  }
 
.error-page h1 {
  font-size: 55pt;
  
  
}

.error-page h2 {
  font-size: 20pt;
  font-weight: 550;
  display: flex;
  flex-direction: column;
  object-fit: contain;

}

.error-page p {
  font-size: 14pt;
  font-weight: 375;
  display: flex;
  flex-direction: column;
  object-fit: contain;
}

.error-page a.button {
  position: relative;
  font-size: 16px;
}


}
/*# sourceMappingURL=main.css.map */