body { height: 100vh;
margin: 0;
padding: 0;
width: 100%;
background-image: url("/img/yard1.png"); 
background-size: cover;
background-repeat: no-repeat;
overflow: hidden;
color: white;
position: relative;
}

header {width: 600px;
height: 200px;
box-sizing: border-box;
border: 2px solid white;
text-align: center;
overflow: hidden;
position: absolute;
top: 15px;
left: 30%;
}

h1 {font-size: 5em;
  font-family: "Bahiana", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px red;
}

main {display: flex;
height: 500px;
width: 900px;
box-sizing: border-box;
border: 2px solid white;
position: absolute;
left: 20%;
bottom: 20px;
font-size: 24px;
line-height: 200%;
box-shadow: 10px 10px 90px lightblue;
justify-content: space-around;
align-items: center;
}
  
a {color: yellow;
}
  
  
  
  
  
  
  