body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

header {
    background-color: #333;
    color: rgb(0, 0, 0);
    padding: 20px 0;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 50px;
    color: wheat;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(123, 129, 0);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #000000;
}

main {
    padding: 15px 5px 15px 5px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

article {
    float: left;
}

article h2 {
    color: #5d008f;
    font-size: 28px;
    text-align: center;
}

article p {
    line-height: 1.6;
    color: #bcbcbc;
    font-size: 25px;
    font-weight: bold;
    font-family:'Times New Roman', Times, serif;

}
 img {
    float: left;
    border-radius: 200px;
    max-width: 200%;
    margin: 20px auto;
 }

 p {
    text-align: left;
    justify-content: space-between;
 }