* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "arial", sans-serif;
    font-size: 2svw;
    min-height: 100svh;
    /*background-color: hsl(33, 100%, 88%, 60%);*/
}

html {
    scroll-behavior: smooth;
    background:
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url("../img/barnwood-red.jpg");
    background-size: cover;
    color: #000; /* Text remains 100% solid */
}

p {
    padding-left: 1em;
    padding-bottom: 0.5em;
    text-indent: -0.75rem;
}

section {
    min-height: 80svh;
    margin-left: 4rem;
    margin-right: 4rem;
    font-weight: 600;
}

.blue {
    background-color: #00f;
}
.red {
    background-color: #f00;
}
.green {
    background-color: green;
}
.yellow {
    background-color: yellow;
    color: black;
}
.hgreen {
    background-color: rgb(1, 78, 1);
}

.fit-pic {
    height: 300px;
    width: 225px;
}
header,
footer {
    color: #fff;
    text-align: center;
    height: auto;
}

header {
    position: sticky;
    top: 0;
    font-size: 3.5svw;
}

footer {
    background-color: #000;
    position: sticky;
    bottom: 0;
    font-size: 3.5svw;
    box-sizing: content-box;
}

li {
    display: inline;
    padding: 1px;
    background-color: #000;
}
a {
    color: antiquewhite;
}
a:visited {
    color: #3cd815;
}
