*{ } p { background : #dab8a0; font-family: 'Inter Tight', sans-serif; } h1 { background: #f792f2; font-family: 'Special Elite', cursive; } h4{ background: #fc0011 } *{ text-decoration: none; } /* Styles placed within the * brackets will apply to all elements in all pages. No one likes those cheesy underlines beneath links, and this will remove them everywhere. */ .container { width: 80%; margin: 0 auto; } header { background:rgb(60, 60, 60); } /* Any color is fine! RGB values can be found at https://www.colorcodehex.com/html-color-picker.html */ header::after { content: ''; display: table; clear: both; } *{ color: black; } html, body{ height: 96%; background: beige; } .container2{ min-height: 96%; background:/* Any color is fine! RGB values can be found at https://www.colorcodehex.com/html-color-picker.html */ ; } /* By setting the height of the body and container2 to the same value, we guarantee that whatever content we place in container 2 will have room, and push the footer to the bottom of the page. */ .logo { float: left; padding: 10px 0; width: 200px; } /* This style pushes our logo to the left side of the screen, and gives it some padding. You may need to play around with the padding values depending on the size of your logo. */ nav { float: right; } /* This style pushes everything in the navigation bar to the right. */ nav ul { margin: 0; padding: 0; list-style: none; } nav li { display: inline-block; margin-left: 20px; padding-top: 27px; } /* "inline-block" makes it so that the list is displayed horizontally. Again you may need to tinker with the margin and padding values to make the navbar look nice. */ nav a { color:white; font-size: 12px; } /* Any color and font-size is fine. */ nav a:hover { color:black; } /* This style changes the color of links when we hover over them with our mouse. */ footer{ text-align:center; color:white; background:rgb(60, 60, 60); } /* Any color is fine! RGB values can be found at https://www.colorcodehex.com/html-color-picker.html */ footer a{ color:white; font-size: 12px; } #btnStyle{ background: url(""); }