@import url('/static/css/colors.css');
@import url('/static/css/goback.css');
@import url('/static/css/fonts.css');

* {
    --dot-color: #fe85fd;
    --border-color: #f0bbf0;
    --text-color: #f4e0e7; /* as if it was solid */
}

body {
    padding-top: 5%;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
    color: white;
    /* color: #f4e0e7; */
    font-family: sixtyfour, monospace;
    justify-content: center;
    display: grid;
}

body, body * {
    background-color: #b73061;
}

#dw_binary_clock {
    display: flex;
    align-items: center;
    justify-content: center;
}

#dw_binary_clock > * {
    border: var(--border-color) solid 3px;
    border-radius: 3px;
    /* TODO make funky border */
    margin: 10px;
    width: 50px;
    height: 110px;
    display: flex;
}

.fd, .sd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    width: 50%;
}

.fd > *, .sd > * {
    border: var(--border-color) solid 2px;
    border-radius: 50%;
    margin: 4px;
    width: 15px;
    height: 15px;
}

#h1 {
    padding-bottom: 5%;
}

hr {
    border: none;
    height: 0;
    margin: 10px 0;
    padding: 0;
}

#nw_binary_clock {
    display: grid;
    justify-content: center;
}

#nw_binary_clock > div > p {
    text-align: right;
    width: 112px;
}

#nw_binary_clock > div {
    display: flex;
    align-items: center;
    margin-top: -10px;
    margin-bottom: -5px;
}

.digits {
    display: flex;
    flex-direction: row-reverse;
}

.digits > div {
    margin: 5px;
    width: 15px;
    height: 15px;
    border: var(--border-color) solid 2px;
    border-radius: 50%;
}

details {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 750px;
}

details > a {
    color: pink;
    text-decoration: underline 1px wavy;
}