@font-face {
  font-family: 'Corporate A';
  src: url('corporate_a.ttf') format('truetype');
}

@font-face {
  font-family: 'Corporate S';
  src: url('corporate_s.otf') format('opentype');
}


body {
  display: flex;
  flex-direction: column;
  
  height: 100%;
  height: 100vh;
  height: 100dvh;

  width: 100vw;
  
  animation: fadeIn 1.5s ease-in forwards;
}

header {
  font-family: 'Corporate A';
  font-size: 48px;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 12px;
}

main {
  flex: 1; 
  flex-grow: 1;

  display: flex;
  flex-direction: column; 
  align-items: center;

  padding-top: 40px;
  padding-bottom: 40px;

  -webkit-overflow-scrolling: touch;

  overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.car-text {
  position: absolute;
  padding: 4px 6px;
  background: radial-gradient(#00000082 0%, #ffffff00 85%, #00000000);
}

footer a {
  font-size: 14px;
  color: rgb(88, 88, 88);
}
footer a:hover {
  color: rgb(194, 194, 194);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}