* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color:honeydew;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: lightcoral;
}

header {
    background-image: url(../images/oarfish.jfif);
    height: 685px;
    /* width: 1240px; */
    /* left: 8px; */
    border: 8px solid lightcoral;
    /* height: 701px; */
    width: 620px;
    margin: 20px auto;
}

/* descendant selector is space, child is > */

header h1 {
    /* text-align: center; */
    /* font-size: 4em; */
    position:relative;
    top: 315px;
    font-size: 23pt;
    /* word-spacing: 50px; */
}

header p {
    color: honeydew;
    position: relative;
    font-style: italic;
    top: 315px;
}

#sideways {
    font-size: 20pt;
    transform: rotate(25deg);
    float: right;
    box-shadow: 2px 2px 15px 2px;
    background-color: honeydew;
    border: lightcoral solid 1px;
}

article {
    margin: 20px auto;
    box-shadow: 4px 4px 15px 3px;
    width: 70%;
    padding: 1em 2em;  
    min-height: 300px;
}

#trivia {
    background-image: url(../images/oarfish3.jfif);
}

#images {
    border: lightcoral solid 2px;
}

article#backgrounds {
    min-height: 300px;
    background-color: lightcyan;
    background-image: url(../images/oarfish3.jfif), url(../images/oarfish2.jfif);
    background-size: 50% cover, 50% cover;
    background-repeat: no-repeat, no-repeat;
}

article#resize {
    width: 400px;
    height: 300px;
    margin: 40px auto;
    background-image: url(/images/ocean.jpg);
    background-size: 100%;
    background-position: center;
    transition: all 500ms ease-in-out;
}

article#resize:hover {
    background-size: 120%;
    filter: grayscale(100%)
}