*{
    margin: 0;
    box-sizing: border-box;
    user-select: none; 
    -webkit-user-select: none; 
}

.hero{
    height: 100dvh;
    background-color: rgb(183, 1, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0, 0.9);
    overflow: hidden;
}

.timebox{
    display: flex;
    gap: 5vw;
    flex-wrap: wrap;
    justify-content: center;
}

.time h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    font-size: 10vw;
    font-weight: 100;
    display: inline-block;
    transform: scaleY(5);
    transform-origin: center;
}


@media (max-width: 480px) {
    .timebox {
        gap: 3vw;
    }
}

.no-highlight {
  user-select: none; 
  -webkit-user-select: none; 
  -khtml-user-select: none;
  -webkit-touch-callout: none;
}
