#watchOSWatch {
    display: none;
    width: 100vw;
    height: 100vh;

    background: url(./Images/watchOSClockBackground.png);
    background-size: cover;
}

#watchOSWatch img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
}

#watchOSWatch .middleCircle {
    z-index: 10;
    width: 5vw;
    height: 5vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: white;
    border-radius: 50%;
}

#watchOSWatch .hourHand {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
}

#watchOSWatch .hourHand::after {
    content: '';
    left: 50%;
    right: 50%;
    top: 50%;

    width: 2vh;
    height: 30vh;

    background: red;
    position: absolute;
    transform: translate(-50%, -100%);
    border-radius: 1vh;
}

#watchOSWatch .minuteHand {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
}

#watchOSWatch .minuteHand::after {
    content: '';
    left: 50%;
    right: 50%;
    top: 50%;

    width: 2vh;
    height: 25vh;
    
    background: white;
    position: absolute;
    transform: translate(-50%, -100%);
    border-radius: 1vh;
}

#watchOSWatch .secondHand {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
}

#watchOSWatch .secondHand::after {
    content: '';
    left: 50%;
    right: 50%;
    top: 50%;

    width: 1vh;
    height: 25vh;
    
    background: red;
    position: absolute;
    transform: translate(-50%, -100%);
    border-radius: 1vh;
}

#watchOSWatch h1 {
    width: max-content;
    position: absolute;
    color: #52c9ff;
    left: 25%;
    top: 60%;
    text-shadow: 0 0 0.5vh black;
    font-family: 'Whitney';
    font-size: 10vh;
}

@media (aspect-ratio: 1/1) {
    body {
        background: black;
        position: relative;
    }

    #watchOSWatch {
        display: block;
    }
}