* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

.tableContents {
    margin-top: 0px;
    padding-left: 10vw;
    height: 100vh;
    background-color: #191618;
}

.tableContents h1 {
    padding-top: 5vh;
    width: 100%;
    font-size: 3vw;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 2px 1px grey;
}

.tableContents h1:hover {
    text-decoration: underline;
}

.tableContents p {
    margin-top: 3vw;
    color: white;
    font-size: 1.1vw;
    font-family: monospace;
    text-shadow: 1px 2px 1px grey;
}

.clocklist {
    margin-top: 3vh;
    display: flex;
}

.clocklist div {
    display: block;
    margin-left: 3vw;
}

.clocklist a {
    color: white;
    font-family: monospace;
    text-decoration: none;
    font-size: 0.9vw;
}

.clocklist a:hover {
    color: #931A00;
}

.tableContents h2 {
    margin-top: 10vh;
    width: 100%;
    font-size: 1.6vw;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 2px 1px grey;
}

.clockcontainer {
    margin: 0 auto;
    width: 100vw;
    display: block;
    font-size: 0px;
    overflow: hidden;
}

.clock {
    width: 100vw;
    min-height: 700px;
    height: 103vh;
    overflow: hidden;
    display: flex;
}

.clock canvas {
    margin-top: 20vh;
    border-radius: 3%;
    border: 10px solid white;
    background-color: black;
    height: 500px;
    width: 300px;
    box-shadow: 3px 3px 10px #070707;
}

.clock pre {
    display: none;
    width: 35vw;
}

.clock code {
    height: 40vh;
    max-height: 300px;
    font-size: 0.8vw;
    overflow: auto;
    border-radius: 3%;
    padding: 1vw;
}

.clockCodeButton {
    position: relative;
    font-family: monospace;
    top: 650px;
    height: 5%;
    width: 13%;
    border-radius: 5%;
    font-size: 1.2vw;
    padding-left: 0.1vw;
    padding-right: 0.1vw;
    color: grey;
}

.even .clockCodeButton {
    left: -40vw;
}

.odd .clockCodeButton {
    left: 9vw;
}

.clockCodeButton:hover {
    color: black;
    border: 2px solid grey;
}


.clockCodeButton:focus {
    border: 2px solid black;
    outline: 0;
}

.clock .textholder {
    margin-top: 20vh;
    width: 40vw;
}

.clock .textholder h1 {
    width: 100%;
    font-size: 85px;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 2px 1px grey;
}

.clock .textholder p {
    color: white;
    font-size: 40px;
    font-family: monospace;
    text-shadow: 1px 2px 1px grey;
}

.even .textholder {
    margin-left: 10vw;
}

.even canvas {
    margin-left: 15vw;
}

.odd .textholder {
    margin-left: 15vw;
}

.odd canvas {
    margin-left: 10vw;
}