body {
    background-color: rgb(70, 52, 71);
    color: white;
    text-align: center;
    width: 90%;
    margin: auto;
    font-family: sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-content: center;
    min-height: 100svh; 
    text-align: center;
}

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

button:active {
    box-shadow: none;
}

button[type=submit] {
    margin: auto;
    padding: 22%;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bolder;
    box-shadow: 4px 6px #0000007c;
}

button[value=Poop] {
    background-color: brown;
    border: 3px solid black;
}

button[value=Pee] {
    background-color: yellow;
    border: 3px solid black;
}

button[value=Ate] {
    background-color: green;
    border: 3px solid black;
}

button div {
    background-color: black;
    border: 3px solid white;
    padding: 2px 4px;
    border-radius: 5px;
}

input[type=time] {
    margin: auto;
}

.container a {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: white;
}

a:visited {
    color: white;
    text-decoration: none;
}

.tile_container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    background-color: rgb(47, 12, 80);
    box-shadow: 4px 6px #0000007c;
}

.tile_title {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 0 18px;
    font-weight: bold;
}

.tiles {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.tile {
    display: flex;
    justify-content: center;
    border: solid white 2px;
    padding: 1vh;
    margin: 1em;
    border-radius: 5px;
    background-color: rgb(43, 20, 44);
}