/* Global Styles */
body {
    background-color: #0B0B0B;
    color: #FAF6E2;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Ensures the content is visually centered */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0;
}

.Logo {
    max-width: 200px;
    margin: 0 auto;
}


/* Ensures the h1 element is visually hidden but accessible to screen readers */
.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Section Styling */
section {
    margin-bottom: 40px;
}

h2 {
    margin-top: 0;
}

/* Project Section */
.project {
    margin-bottom: 20px;
}

.project img {
    width: 100%;
    /* Responsive image */
    max-width: 600px;
    /* Limiting image size */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Centering the image */
}

/* Contact Section */
.contact-info {
    text-align: center;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
}


@media screen and (min-width: 768px) {
    .project {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .project div {
        flex: 1;
        padding: 0 20px;
    }
}

h2 {
    font-size: 4rem;
    line-height: 4.5rem;
}

h3 {
    padding: 20px;
    font-size: 2rem;
}

a {
    color: #fff;
}