css /* Style.css */ body { background-color: #000; color: #fff; font-family: "Comic Sans", sans-serif; margin: 0; padding: 0; } a { color: #f00; text-decoration: none; font-weight: bold; text-align: center; margin: 10px; padding: 10px; border: 4px solid #f00; border-radius: 10px; background-color: #000; cursor: pointer; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); transition: all 0.3s ease-out; } a:hover { background-color: #f00; color: #000; } a:visited { color: #f00; background-color: #f00; border-color: #f00; text-shadow: none; box-shadow: none; } h1, h2, h3, h4, h5, h6 { font-family: "Comic Sans"; font-weight: bold; color: #fff; margin: 20px 0; padding: 10px; text-align: center; border-top: 2px solid #f00; border-bottom: 2px solid #f00; background-color: #000; background-image: none; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); } h2 { font-size: 24px; } h3 { font-size: 18px; } h4 { font-size: 14px; } p { font-family: "Arial", sans-serif; font-size: 16px; color: #fff; margin: 20px 0; padding: 10px; border-top: 2px solid #f00; border-bottom: 2px solid #f00; background-color: #000; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); } p::first-line { font-size: 20px; color: #f00; text-align: center; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); } img { display: none; }