@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Space+Grotesk&display=swap');

html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.clock {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    background-image: url(/clock_background.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 500px;
}

.circle {
    border-radius: 50%;
    background-image: linear-gradient(91deg, transparent 50%, #dadada 50%),
		linear-gradient(90deg, #000000 50%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Permanent Marker', cursive;
}

.in-circle {
    transform: scale(1.9);
    position: relative;
    text-align: center;
    border-radius: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #FFFFFF;
}

.sec-circle {
    height: 120px;
    width: 120px;
    background-color: #E65962;
}

.sec-in-circle {
    height: 60px; 
    width: 60px; 
}

.min-circle {
    height: 160px;
    width: 160px;
    background-color: #E65962;
}

.min-in-circle {
    height: 80px; 
    width: 80px; 
}

.hr-circle {
    height: 200px;
    width: 200px;
    background-color: #E65962;
}

.hr-in-circle {
    height: 100px; 
    width: 100px; 
}

#hr-circle {
    position: absolute;
}

#hr-circle::after {
    position: absolute;
    content: '__ Hours';
    color: #FFFFFF;
    top: 60px;
    right: -63px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    display: none;
}

#min-circle {
    position: absolute;
    z-index: 1;
}

#min-circle::after {
    position: absolute;
    content: '____ Minutes';
    color: #FFFFFF;
    top: 66px;
    right: -95px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    display: none;
}

#sec-circle {
    position: absolute;
    z-index: 2;
}

#sec-circle::after {
    position: absolute;
    content: '_______ Seconnds';
    color: #FFFFFF;
    bottom: 32px;
    right: -123px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    display: none;
}

#am {
    position: absolute;
    z-index: 2;
    color: #FFFFFF;
    font-size: 12px;
    margin-left: 60px;
    margin-top: 3px;
    font-family: 'Space Grotesk', sans-serif;
}