:root {
    /* Changes background color to dark green */
    --bg-color: #d4c8c8;

    /* Changes background color to dark blue */
    --text-color: #393636;
}
body {
    /* Changes the background color and text color to the value of the vars assigned above */
    background-color: var(--bg-color);
    color: var(--text-color);
}

a:visited {
    color: blue;
}

.home_page {
    --bg-color: #786244;
    margin: 0 auto;
}
.home_page h1 {
    text-align: center;
    font-size: 3em;
}

.home_page p {
    font-size: 1.2em;
}

.home_page small {
    text-align: center;
}
.slice_of_life {
    margin: 0 auto;
    width: 70%;
}

.slice_of_life h1 {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-family:'Times New Roman', Times, serif;
}

.slice_of_life p {
    text-indent: 20px;
    text-align: left;
    font-size: 1.2em;
}



.media_log {
    margin: 0 auto;
    width: 70%;
}

.media_log h1 {
    text-align: center;
    font-style: italic;
    font-size: 1.2em;
}

.media_log p {
    text-indent: 20px;
    text-align: left;
    font-size: 1.2em;
}



.projects {
    margin: 0 auto;
    width: 70%;
}

.projects h1 {
    text-align: center;
    font-style: italic;
    font-size: 1.2em;
}

.projects p {
    text-indent: 20px;
    text-align: left;
    font-size: 1.2em;
}