html, body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #616161;
    color: #3d3d3d;
    user-select: none;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto;
}

p {
    color: aquamarine;
    text-align: center;
}

h1 {
    text-align: center;
    font-weight: bolder;
    text-shadow: 1px 1px #000000;
    margin-bottom: 0;
}

h2 {
    text-align: center;
    color: aqua;
}

img {
    width: 150px;
    margin: 0 auto;
    padding-bottom: 20px;
}

table {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 20px;
    background-color: #adadad;
    border: none;
}

td, th {
    color: darkblue;
    text-align: center;
    padding: 10px;
    border: 1px solid aquamarine;
    
}

/* note i just copied/pasted this clock one */
#clock {
    font-size: 48px;
    text-align: center;
  }

  
input {
    color: #0C0C09;
    background-color: #adadad;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    margin: 0px 0 10px 0;
}

button {
    color: white;
    background-color: #292A2F;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

button:hover {
    background-color: aqua; /* #000000; */
    cursor: pointer;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul li {
    font-size: 20px;
    color: darkblue;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    flex-grow: 1;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2)
}

ul li:hover {
    background-color: aquamarine; /*#F5E9E2 */
    cursor: pointer;
}