


/* Font sizing
 * */
main {
   font-size: 6vw;
}
@media( orientation: landscape ) {
   main {
      font-size: min(2.5vw, 32px);
   }
}



/* Preview video
 * */
.topmovie {
   background: #d8d9f0;
   height: 250px;
}
@media ( min-width: 768px ) {
   .topmovie {
      height: 500px;
   }
}
@media ( min-width: 1280px ) {
   .topmovie {
      height: 800px;
   }
}
.topmovie video {
   display: block;
   height: 100%;
   width: 100%;
   aspect-ratio: 2.4 / 1;
   object-fit: cover;
}



/* GOAL METERS
 * */
.goalmeters {
   padding: 2em 0;
   text-align: center;
   color: #0000cd;
   display: flex;
   flex-direction: column;
   row-gap: 2em;
}
.goalmeters > div {
   display: flex;
   flex-direction: column;
   row-gap: 1em;
}
@media( orientation: landscape ) {
   .goalmeters {
      text-align: left;
      flex-direction: row;
      justify-content: space-between;
   }
   .goalmeters > div {
      flex: 0 0 39%;
   }
}
.goalmeters h3,
.goalmeters p {
   margin: 0;
}
.goalmeters h3 {
   display: block;
   font-weight: 500;
   font-size: 1.5em;
}
.goalmeters a {
   text-decoration: none;
   border: 2px solid #0000cd;
   display: block;
   text-align: center;
   line-height: 1.2;
   padding: .5em 1em;
   font-size: .85em;
   border-radius: 50px;
   transition: 300ms;
}
.goalmeters a:hover {
   color: white;
   background-color: #0000cd;
}
