/* Reset some default styles in the browser */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color to the body */
body {
    background-color: #f3f4f6;
    font-family: Arial, sans-serif;
}

/* Center content */
.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Add some space between the image and the content */
img {
    margin-bottom: 30px;
}

/* Style the title */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

/* Style the contact info */
.contact {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}
