* { font-family: Arial, Helvetica, sans-serif; } body { background-color: cadetblue; background-image: url("background.webp"); background-attachment: fixed; background-repeat: no-repeat; background-position: center; background-size: cover; } p { color: darkturquoise; background-color: red; } /* ID Selector */ #top { font-size: 200px; } /* Class Selector */ .center { margin-left: auto; margin-right: auto; } /* grab p thats inside two divs */ div div p { background-color: transparent; text-align: right; } p:first-child { color: blue; } p:nth-child(2) { color: green; } table tr:nth-child(even) { background-color: rgba(0, 255, 255, 0.422); } table tr:nth-child(odd) { background-color: rgba(255, 0, 0, 0.424); } th { background-color: rgba(255, 255, 255, 0.625); } div { padding: 50px; margin: 20px; } h1, h2, h3, h4, h5, h6 { text-align: center; font-style: italic; } img { border-radius: 10px; } a { font-style: italic; color: bisque; } a:visited { font-style: italic; color: coral; }