body {
    margin: 0;
    background-color: black;
    color: white;
    /* Assuming you want white text */
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 20px;
}

main {
    max-width: 900px;
    /* Adjust for desired content width */
    margin: 0 auto;
    /* Centers the content  */
    padding: 20px;
}

h2 {
    font-size: 2.5em;
    /* Adjust the size if needed */
}

ul {
    list-style-type: disc;
    margin-left: 30px;
}

.contact-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border-radius: 10px;
    /* Creates rounder corners */
    background-color: rgba(255, 255, 255, 0.5);
    /* Slightly transparent white */
    color: black;
    cursor: pointer;
    text-decoration: none;
    /* Removes link underline */
    text-align: center;
}

footer {
    text-align: center;
    margin-top: 20px;
}

/* Responsive design (adjust breakpoints as needed) */
@media (max-width: 768px) {
    /* Adjustments for tablet-sized screens */
}

@media (max-width: 480px) {
    /* Adjustments for smaller phone screens */
}