/* css/style.css */
body {
    font-family: Arial, sans-serif;
    background-image: url('img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center; /* Center the content within the container */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        max-width: 90%; /* Reduce the container width for smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    header h1 {
        font-size: 24px; /* Reduce the font size for the header */
    }

    .contact-details p {
        font-size: 16px; /* Reduce the font size for contact details */
    }

    .social-media a {
        margin-right: 5px; /* Reduce margin for social media buttons */
    }
}

/* Your existing CSS styles below this line */

header {
    background-color: #fff;
    color: black;
    text-align: center;
    padding: 20px;
	    max-width: 300px;
    margin: auto;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
}

.contact-details {
    margin-top: 20px;
}

.social-media {
    width: 60px;
    display: inline-flex;
    margin-top: 10px;
}

.social-media a {
    text-decoration: none;
    margin-right: 10px;
}
a {
    color: black;
    text-decoration: none; /* Remove underlines from links if desired */
}