body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

button {
    border: 0px;
}

#site-container {
    width: 60%;
    margin: auto;
}

#button-area {
    column-count: 2;
    margin-top: 10px;
}

#clock {
    color: white;
    font-size: 130pt;
    text-align: center;
    margin: auto;
    border-radius:10px;
    background-color: black;
}

#lap-area {
    width: 100%;
    margin-top: 10px;
    font-size: 20pt;
}

.button {
    border-radius: 5px;
    color: white;
    text-align: center;
    font-size: 60pt;
}

#start {
    background-color: green;
    width: 100%;
}

#start:hover {
    background-color: rgb(0, 110, 0);
}

#stop {
    background-color: red;
    width: 100%;
}

#stop:hover {
    background-color: rgb(212, 0, 0);
}