body {
    font-family: fantasy;
}

/* type selector */
header {
    /* border: 8px solid var(--color-accent1); */
    min-height: 80px;
    position: relative; /* this does nothing noticable */
}

/* decendant selector */
header div {
    border: 10px solid #900;
    /* margin: 20px auto; */
    width: 400px;
}

/* header div:last-child {
    box-sizing: border-box;
    
} */

/* id selector */
#headertext {
    text-align: center;
    min-height: 200px;
    /* float: left; */
    position: absolute; right: 320px; top: 50px;
    z-index:  10; /* controls the layering of the overlapping items */
    background-color: rgba(235,235,235,.6);

}

#headerphoto {
    background-image: url(../images/fall.jpg);
    background-size: cover;
    background-position: center;
    min-height: 300px;
    /* float: right; */
    position: absolute; right: 0px; top: 0px; 
}