css /* style.css */ * { box-sizing: border-box; margin: 0; padding: 0; border: 1px solid black; background-color: pink; background-image: linear-gradient(to bottom, #ff69b4, #fffafa); box-shadow: 0 0 10px 0 black; font-family: "Bangers", cursive; font-size: 18px; font-weight: 900; line-height: 24px; letter-spacing: 2px; color: #fff; text-shadow: 0 0 5px black; text-transform: uppercase; white-space: pre; word-wrap: break-word; } body { background-image: linear-gradient(90deg, #fffafa, #ff69b4); background-size: 100px 100px; background-position: 0 0; background-repeat: no-repeat; background-attachment: fixed; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; box-sizing: border-box; overflow: hidden; position: relative; } h1 { font-size: 36px; font-weight: bold; color: #000; text-align: center; margin: 20px 0; padding: 10px; background-color: #fff; border-top: 4px solid black; border-radius: 10px; box-shadow: 0 0 10px 0 black; } h2 { font-size: 28px; font-weight: bold; color: #000; text-align: center; margin: 10px 0 20px 0; padding: 8px; background-color: #fff; border-bottom: 4px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; } h3 { font-size: 24px; font-weight: bold; color: #000; text-align: center; margin: 10px 0 20px 0; padding: 8px; background-color: #fff; border-top: 4px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; } p { font-size: 18px; font-weight: 300; color: #000; text-align: center; margin: 10px 0; padding: 8px; background-color: #fff; border-bottom: 4px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; } code { font-size: 18px; font-weight: bold; color: #000; text-align: center; margin: 10px 0; padding: 8px; background-color: #fff; border: 1px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; white-space: pre-wrap; word-wrap: break-word; text-overflow: ellipsis; overflow: hidden; text-align: center; } a { font-size: 18px; font-weight: 300; color: #000; text-align: center; margin: 10px 0; padding: 8px; background-color: #fff; border-bottom: 4px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; text-decoration: none; text-underline: none; } a:hover { color: #000; background-color: #fff; border: 1px solid black; border-radius: 5px; box-shadow: 0 0 5px 0 black; }