* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

h1 {
    color: cadetblue;
    text-align: center;
    text-shadow: 3px 1px orangered;
    font-size: 50px;
}

p {
    color: cadetblue;
    text-align: center;
    font-size: 30px;
    text-shadow: 3px 1px #222;
}

body {
    background-color: slategray;
}

#art1 {
background-color:  orangered;
padding: 60px;
position: relative;
}

.logo {
    width: 200px; 
    height: 200px;
    background-color: pink; /*when you dont have an header on the page this will show up in the left top corner where a logo would go on a site. but because i do have a header it will not show this way. just get rid of header or put logo div in header*/
    border-radius: 40%;
    position: absolute; /*absolute position within a relative parent*/
    left: 3em; bottom: -5em;
}

.hero {
background-color: teal;
height: 35vh;
}