html {
  font-size: calc(10px + (16 - 10) * (100vw - 1280px) / (1920 - 1280));
  font-display: swap;
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
}

.App {
  color: #312249;
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
}

.header {
  background: url(img/parking-bg.png) no-repeat;
  background-position: top;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 33rem;
}

@media screen and (max-width: 1280px) {
  .header {
    background-position: top center;
    background-size: 1280px;
  }
}

.header img {
  max-height: 30rem;
  max-width: 100%;
}

.primary {
  color: #eb5e57;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 0 1rem;
}

.title strong {
  color: #eb5e57;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 0 1rem;
  text-align: center;
  border: none;
  color: white;
  background-color: #eb5e57;
  background-image: linear-gradient(135deg, #eb5e57, #ea518f);
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  height: 3rem;
  min-width: 20rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
}

a::active {
  box-shadow: inset 0 0 0 1000px rgba(49, 34, 73, 0.2);
}

.subtitle {
  text-align: center;
  font-size: 1.4rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.logo-wrapper {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
}

.logo-wrapper img {
  width: 10rem;
}