/* Reset some default styles for better consistency across browsers */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color and some basic styles */
body {
    background-color: #662549;
    font-family: Arial, sans-serif;
}

/* Center the content vertically and horizontally */
.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Style the image */
img {
    max-width: 50%;
    height: auto;
    /*border: 2px solid #333;  Add a border around the image */
}

/* Style the heading */
h1 {
    font-size: 36px;
    margin-top: 20px;
    color: white;
}

/* Style the paragraph text */
p {
    font-size: 24px;
    margin-top: 10px;
    color: white;
}
