css /* Friday Styles */ body { background: #FF69B4; font-family: "Arial Black", Arial, sans-serif; font-size: 16px; line-height: 1.5; color: #000000; margin: 0; padding: 0; } /* Add a border around the whole page */ body { border: 10px solid #FF0000; } /* Add a drop shadow to the whole page */ box-shadow: 0 0 10px #000000; /* Add a thick black border to the header and footer */ header { border-top: 4px solid #000000; } footer { border-bottom: 4px solid #000000; } /* Make all text bold and red */ body * { font-weight: bold; color: #FF0000; } /* Add a background image of a Friday coffee cup */ body { background-image: url('coffee-cup.jpg'); background-size: 100%; background-position: center; background-repeat: no-repeat; } /* Add a drop shadow to the header and footer */ header, footer { box-shadow: 0 0 10px #000000; } /* Add a thick black background to the header and footer */ header, footer { background-color: #000000; }