body
{
    margin: 0;
    overflow: hidden;
}

canvas
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 15, 1);
}

@font-face {
    font-family: 'OldLondon';
    src: url('./media/font/OldLondon.ttf') format('truetype');
}

#MadeInHeaven
{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vmin;
    text-align: center;
    color: white;
    font-family: 'OldLondon';
    font-size: 144pt;
    line-height: 0.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 
                 0 0 20px rgba(255, 255, 255, 0.4), 
                 0 0 30px rgba(255, 255, 255, 0.3), 
                 0 0 40px rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.watchface {
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vh;
    background: url('./media/images/watchface.svg') center center/cover no-repeat;
    opacity: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.minutes-hand {
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vh;
    background: url('./media/images/minutes.svg') center center/cover no-repeat;
    opacity: 50%;
    z-index: 11;
    transform-origin: center;
    transform: rotate(0deg);
}

.hours-hand {
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vh;
    background: url('./media/images/hours.svg') center center/cover no-repeat;
    opacity: 50%;
    z-index: 12;
    transform-origin: center;
    transform: rotate(0deg);
}

.night-to-day {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(50, 50, 50, 0.6) 10%);
    z-index: 4;
}

.day-to-night {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.6) 80%, rgba(50, 50, 50, 0.6));
    z-index: 4;
}
