*{
    margin: 0px;
    padding: 0px;
    border: 0px;
}

body {
    text-align: center;
    background-color: #000000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    row-gap: 20px;
}

div#timer-container {
    width: 200px;
    height: 30%;
    background-color: #1a1a1a;
    text-align: center;
    font-size: 100px;
    border: solid #800000 7px;
    border-radius: 5px;
    color: #cc0000;
    text-shadow: 0 0 10px #ff0000;
    box-shadow: 0 0 20px #800000;
    font-family: 'Times New Roman', serif;
}

div#timer-container.inactive {
    background-color: #0a0a0a;
    border-color: #2a0000;
    color: #4a0000;
    text-shadow: none;
    box-shadow: none;
}

button{
    height: auto;
    padding: 15px;
    border: solid #4a0000 7px;
    border-radius: 5px;
    color: #e1e1e1;
    background-color: #2b0000;
    font-size: 25px;
    margin: 1em;
    display: inline-block;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #4a0000;
}

button:hover {
    background-color: #4a0000;
    transform: scale(1.05);
    box-shadow: 0 0 25px #800000;
}

.selected-stop {
    background-color: #003c4a;
    box-shadow: 0 0 25px #0b6b6d;
}

.selected-stop:hover {
    background-color: #01576b;
    box-shadow: 0 0 25px #109c9e;
}