body {
    font-family: 'Dosis', sans-serif;
    transition: background-color 3s ease;
    height: 80vh;
    margin: 50px;
}

.header-container {
    display: flex;
    padding-top: 30px;
    padding-left: 50px;
    justify-content: center;
    align-items: center;
    max-height: 100px;
}

header {
    display: flex;
    width: auto;
    font-size: 1.3em;
    transition: color 3s;
}

h1,
h3,
footer {
    transition: color 3s;
}

h1,
h3 {
    padding: 15px;
    align-items: center;
    /* fucking finally. this centers the text within the box. */
}

h3 {
    display: flex;
    max-width: 520px;
    justify-self: right;
}

h1 {
    text-align: right;
}

.container {
    display: flex;
    align-items: center;
    height: 50vh;
    justify-content: center;
}

.col {
    /*centers the button on the page*/
    display: flex;
    align-items: center;
    /* center items vertically */
    justify-content: center;
    /* center items horizontally */
}

button {
    font-family: 'Dosis', sans-serif;
    border-radius: 50%;
    border: 0px;
    font-size: 1.6em;
    font-weight: bold;
    padding: 30px 30px;
    width: 300px;
    height: 300px;
}

.hex-value-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5em;
    width: 150px;
    height: 50px;
    background-color: white;
    border: 0px;
    border-radius: 10px;
    font-size: 1.2em;
    color: black;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}