body
{
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: orange;
    color: whitesmoke;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: red;
}

h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: yellow;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: indigo;
}

h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: gray;
    text-indent: 20px;
}

a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 90%;
    border: 2px solid purple;
    border-radius: 10px;
}


.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2b2b2b;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
