/* All the css variables are declared here. */
:root {
    --primary-color: rgb(0, 163, 204);
    /* --secondary-color: rgb(77, 219, 255); */
    --secondary-color: rgb(0 126 157);
    --header-button-hover-color: rgb(0, 204, 255);
}

body {
    font-family: 'Source Code Pro', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button {
    cursor: pointer;
}