body {
    margin: 0;
    padding: 0;
}

.clock-frame {
    position: relative;
    align-self: flex-end;
    margin-right: -290px;
    z-index: 5;
}

#clock {
    width: max-content;
    height: max-content;
}

#clock svg {
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.circle-bg {
    stroke-dashoffset: 0;
    stroke-dasharray: none;
    stroke-miterlimit: 10;
    fill: none;
    stroke: white;
    stroke-width: 0.9;
    stroke-opacity: 0.4;
}

.main-circle {
    stroke-dashoffset: 1485;
    stroke-dasharray: 1485.72px, 1495.72px;
    stroke-opacity: 1;
    stroke-miterlimit: 10;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.circles {
    stroke-opacity: 0.6;
    stroke-miterlimit: 10;
    fill: transparent;
    stroke: white;
    stroke-width: 1;
}

.lines line {
    stroke-opacity: 0.6;
    stroke-miterlimit: 10;
    fill: none;
    stroke: white;
    stroke-width: 1;
}

.btn-1:hover {
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
}

.btn {
    cursor: pointer;
}

.dashes {
    stroke-opacity: 1;
    stroke-miterlimit: 10;
    fill: none;
    stroke: white;
    stroke-width: 30;
    stroke-dashoffset: 0;
    stroke-dasharray: 20;
}