body { font-family: "Tap Dance Font"; font-size: 24px; color: #000; background: #ff00ff; background-image: linear-gradient(to bottom, #ff0000, #0000ff); border: 4px solid black; } .title { font-size: 48px; font-weight: bold; color: #fff; text-shadow: 0px 0px 10px black; } .subtitle { font-size: 24px; font-weight: bold; color: #000; text-shadow: 0px 0px 10px black; } .image { display: flex; justify-content: center; align-items: center; margin: 20px 0; padding: 10px; border: 4px solid black; border-radius: 50%; width: 100%; height: 100vh; object-fit: cover; } .description { font-size: 18px; color: #fff; text-shadow: 0px 0px 10px black; margin: 20px 0 10px 0; padding: 10px; border: 4px solid black; border-radius: 50%; width: 80%; height: 80vh; object-fit: contain; background: #ff00ff; } .links { list-style: none; padding: 0; margin: 0; display: flex; justify-content: space-between; flex-wrap: wrap; } a { text-decoration: none; color: #000; background: #fff; border: 4px solid black; padding: 10px; text-shadow: 0px 0px 10px black; transition: background-color 0.2s ease; } a:hover { background: #000; color: #fff; }