body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

main {
    width: 50%; /* Adjust the width as needed */
    margin: 20px auto; /* This centers the container */
    padding: 30px; /* Add some padding inside the container */     
    border-radius: 4px; /* Optional: Rounded corners for the container */
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    text-align: center; /* Optionally, this centers the text and elements inside the container */
    background-color: #f0f0f0;
}

ul {
    list-style-type: none; /* Removes bullet points */
    display: inline-block; 
    text-align: left; 
    padding: 0;
}

li {
    margin: 10px 0; /* Adds some space between the list items */
}

img {
    margin:20px;
    width: 250px; /* Adjust the logo size if needed */
}

@media (max-width: 768px) {
    main {
        width: 100%; /* Take up full width on mobile devices */
        margin: 0; /* Remove automatic centering */
        border-radius: 0; /* Optional: Remove rounded corners on mobile */
        padding: 0px 0px 30pc 0px;
        box-shadow: none;
    }
}
