h1,h2,h3,h4 {
    margin: 0;
}

h2 {
    font-size: 82px;
    line-height: 60px;
}

h3 {
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
}

body {
    color: white;
    text-transform: uppercase;
    font-family: "Courier New", "Courier", sans-serif;
}

.container {
    width: 400px;
    height: 400px;
    background: #4ec4ca;
    background: linear-gradient(45deg, #43399f, #4ec4ca);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numbers {
    position: relative;
    height: 100px;
    width: 200px;
    margin-bottom: 4px;
}

.number {
    box-shadow: 0 0 13px 0 rgba(0,0,0,0.2);
}

.one {
    position: absolute;
    z-index: 3;
    height: 100px;
    width: 24px;
    background-color: white;
    border-radius: 3px;
}

.one-tick {
    position: absolute;
    z-index: 2;
    height: 36px;
    width: 20px;
    background-color: white;
    border-radius: 0px 0px 3px 3px;

    transform: rotate(50deg) translateX(1px);
    transform-origin: 0% 0%;
}

.zero {
    position: absolute;
    top: 0px;

    height: 100px;
    width: 100px;
    box-sizing: border-box;
    border: solid;
    border-width: 24px;
    border-radius: 50%;
    border-color: white;
}

.zero:nth-child(3) {
    z-index: 2;
    left: 18px;
}

.zero:nth-child(4) {
    right: 0px;
}
