* {margin: 0; padding: 0; border: 0; box-sizing: border-box}

body {
    background-color: lightyellow;
    font-family:'Courier New', Courier, monospace;
    background-image: url(/images/yarnvortex.jpg);
    background-size: cover;
    /* background-repeat: no-repeat; */
    overflow: auto;
}

header {
    background-color: darkred;
    border-bottom: azure 5px double;
    /* position: fixed; */
}

div#wrapper1 {
    position: relative;
    height: 100px;
    border-bottom: azure double 10px;
}

div#wrapper1 img {
    float: left;
    height: 90px;
}

div#wrapper1 h1 {
    float: left;
    font-size: 5rem;
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

div#wrapper1 p {
    float: right;
    font-style: italic;
}

nav#topnav {
    background-color: brown;
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
nav#topnav ul {
    display: flex;
    list-style: none;
    /* text-align: right; */
    justify-content: right;
}

nav#topnav ul li {
    padding: 5px;
}

#main {
    position: relative;
    /* flex-wrap: wrap; */
}

div#thecall {
    /* height: 100vh; */
    /* width: 30vw; */
    /* background-color: maroon; */
    /* position: fixed; */
    float: left;
}

div#scroll {
    width: 65vw;
    padding: 5vw;
    position: absolute;
    right: 0;
    overflow: auto;
    background-color: lightyellow;
}

div#scroll img {
    /* justify-content: center; */
    border: darkred 3px solid;
    /* right: 0; */
    width: 50vw;
}

h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
}

h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-transform: lowercase;
}

a {
    text-decoration: none;
    color: goldenrod
}

button {
    background-color: goldenrod;
    padding: 30px;
    text-transform: uppercase;
}

footer {
    background-color: brown;
    border-top: double 5px azure;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* @media only screen and (min-width: 900px) {
    section {
        max-width: 600px;
    }




} */