body {
    margin: 0px;
    background-color: whitesmoke;
    font-family: "Rock Salt", cursive;
    text-align: center;
}

.secondary-background {
    background-color: snow;
}

.tagline {
    font-family: "Quicksand", sans-serif;
    color: lightslategrey;
    line-height: 125px;
}


h1 {
    margin: 0;
    background-color: steelblue;
    line-height: 100px;
    color: khaki;
}

h2 {
    margin: 10px;
}


.container {
    border: 2px solid snow;
    display: flex;
}


.week {
    display: inline-flex;
    flex-direction: column;
}

.row {
    min-height: 200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.square {
    width: 125px;
    height: 125px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.day.square {
    background-color: steelblue;
    border: 1px solid white;
}

.task.square {
    background-color: khaki;
    border: 1px solid white;
}

.task p {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 12px;
}


.reminders {
    display: inline-flex;
    background-color: khaki;
}

.reminders h3 {
    width: 100%;
    margin: 10px;
    color: black;
    line-height: 90px;
    font-size: 24px;
}


footer {
    font-size: 24px;
}