css /* styles.css */ body { background-color: #333; } h1 { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 36px; color: #FFD700; text-shadow: 0 1px 0 #000; border-bottom: 4px solid #000; margin-bottom: 20px; } h2 { font-family: 'Bebas Neue', Arial, sans-serif; font-size: 24px; color: #FFD700; text-shadow: 0 1px 0 #000; border-bottom: 4px solid #000; margin-bottom: 20px; } a { text-decoration: none; color: #FF69B4; border-bottom: 2px solid #000; } a:hover { border-bottom: 4px solid #000; color: #FF69B4; } body > * { padding: 10px 20px; margin: 10px; border: 4px solid #000; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } img { width: 100%; height: auto; margin: 10px 0px; border: 4px solid #FF69B4; -ms-interpolation-mode: nearest-neighbor; border-radius: 0; -webkit-appearance: none; background-clip: no-padding; background-size: 100% 100%; background-origin: border-box; box-sizing: border-box; -webkit-box-sizing: border-box; } img:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: transform 0.2s; -ms-transition: transform 0.2s; transition: transform 0.2s; border: 4px solid #000; }