body {
  font: 100% / 1.5 Calibri;
  color: hsl(0, 0%, 100%);
  height: 1vh;
  margin: 0 auto;
  max-width: 500px;
}


h1 {
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
  font-variant: small-caps;
}

p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 100;
  font-variant: small-caps;
  margin: 1px;
}

.Text{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  font-variant: small-caps;
  margin-top: 100px;
}

.smallText{
  text-align: center;
  font-size: 1rem;
  font-variant: small-caps;;
}

.container {  
  height: 100vh;
  aspect-ratio: 16/9;
  display: grid; 
  grid-template-columns: 1fr 10fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr;

  grid-template-areas: 
    ". A ."
    ". B ."
    ". C ."
  }

.Top { 
  grid-area: A; 
  text-align: center;
  margin-top: 10%; 
  margin-bottom: -50px;
}

.Middle { 
  grid-area: B; 
  text-align: center;
  margin: auto;  margin: -20px;
}

.Lower{
  grid-area: C;
  text-align: center;
  margin-bottom: 5%;  margin: -20px;
}

.onBottom{
  width: 100%;
  margin-bottom: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
}

.onTop{
  margin-top: 10px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

.center {
  text-align: center;
  margin: auto;
}

html {
  background: #08305f;
  height: 100%;
 position: relative;
}



.loader {
  width: 100%;
  height: 15px;
  background: repeating-linear-gradient(-45deg,#f0b537 0 15px,#0000 0 20px) left/200% 100%;
  animation: l3 30s infinite linear;
}
@keyframes l3 {
    100% {background-position:right}
}










.lane {
  width: 80px;
  aspect-ratio: 2;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: var(--c),var(--c),var(--c),var(--c),var(--c),var(--c),var(--c);
  animation: 
    l4-1 1.5s infinite,
    l4-2 1.5s infinite;
}
@keyframes l4-1 {
  0%      {background-size: 0   4px,4px 0  ,0   4px,4px 0   ,0   4px,4px 0  ,0   4px}
  7.14%   {background-size: 25% 4px,4px 0  ,0   4px,4px 0   ,0   4px,4px 0  ,0   4px}
  14.29%  {background-size: 25% 4px,4px 50%,0   4px,4px 0   ,0   4px,4px 0  ,0   4px}
  21.43%  {background-size: 25% 4px,4px 50%,25% 4px,4px 0   ,0   4px,4px 0  ,0   4px}
  28.57%  {background-size: 25% 4px,4px 50%,25% 4px,4px 100%,0   4px,4px 0  ,0   4px}
  35.71%  {background-size: 25% 4px,4px 50%,25% 4px,4px 100%,25% 4px,4px 0  ,0   4px}
  42.86%  {background-size: 25% 4px,4px 50%,25% 4px,4px 100%,25% 4px,4px 50%,0   4px}
  49%,
  51%     {background-size: 25% 4px,4px 50%,25% 4px,4px 100%,25% 4px,4px 50%,25% 4px}
  57.14%  {background-size: 0   4px,4px 50%,25% 4px,4px 100%,25% 4px,4px 50%,25% 4px}
  64.29%  {background-size: 0   4px,4px 0  ,25% 4px,4px 100%,25% 4px,4px 50%,25% 4px}
  71.43%  {background-size: 0   4px,4px 0  ,0   4px,4px 100%,25% 4px,4px 50%,25% 4px}
  78.57%  {background-size: 0   4px,4px 0  ,0   4px,4px 0   ,25% 4px,4px 50%,25% 4px}
  85.71%  {background-size: 0   4px,4px 0  ,0   4px,4px 0   ,0   4px,4px 50%,25% 4px}
  92.86%  {background-size: 0   4px,4px 0  ,0   4px,4px 0   ,0   4px,4px 0  ,25% 4px}
  100%    {background-size: 0   4px,4px 0  ,0   4px,4px 0   ,0   4px,4px 0  ,0   4px}
}
@keyframes l4-2 {
  0%,49.9% {background-position:0 50%,bottom 20px left 16px,20px 0,50% 0,40px 100%,bottom 0 right 16px,60px 50% }
  50%,100% {background-position:right 60px top 50%,16px 0,right 40px top 0,50% 100%,right 20px bottom 0,right 16px top 20px,100% 50%}
}
