/* 
  Name: Evan Jackovich
  Course: ITWP 1050
  Assignment: Homework2
  Date: 3/22/2025
*/
/* section 1.2 step 1 (background)*/
.footer  {
	background: linear-gradient(to right, #ff7e5f, #feb47b); 
}


.body {
background-image: url('background1.jpg'); 
background-size: cover; 
background-position: center; 
background-repeat: no-repeat; 
color: black; 
/* section 1.2 step 3 (body)*/
line-height: 1.6; 

}


/* section 1.2 step 2 (header)*/
@font-face {
    font-family: 'Underdog', system-ui; 
    src: url('https://fonts.googleapis.com/css2?family=Underdog&display=swap');
    font-weight: 400;
    font-style: normal;
}


h1 {
    font-family: 'Underdog', Arial, sans-serif; 
    font-size: 3em; 
    color: #333; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    letter-spacing: 2px; 
    font-variant: small-caps; 
    white-space: nowrap; 
}

/* section 1.2 step 4 (image)*/
img {
  border: 1px solid black; 
  border-radius: 10px;   
}