/* General Page Styling */
body {
    background-color: #111827;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 40px;
}

/* Main Heading */
h1 {
    color: #ff66cc;
    font-size: 42px;
    margin-bottom: 20px;
}

/* Section Headings */
h2 {
    color: #00d4ff;
    margin-top: 35px;
}

/* Paragraphs */
p {
    width: 75%;
    margin: 15px auto;
    line-height: 1.8;
    font-size: 18px;
}

/* Lists */
ul,
ol {
    display: inline-block;
    text-align: left;
    margin: 15px auto;
    padding-left: 25px;
}

li {
    margin: 8px 0;
}

/* Image */
img {
    margin-top: 30px;
    border-radius: 12px;
    border: 3px solid #ff66cc;
    width: 350px;
    height: auto;
}

/* Link */
a {
    color: #ff66cc;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

/* Bold Text */
b {
    color: #ff66cc;
}

/* Italic Text */
i {
    color: #00d4ff;
}

/* Underlined Text */
u {
    text-decoration-color: #ff66cc;
}