* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Overpass Mono', monospace;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

/* Mobile layout */
@media (max-width: 768px) {
    .body {
        padding: 0 15px;
    }

    .container {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center;    /* Center-align items if needed */
        padding: 0 15px;
    }

    .image-content {
        width: 25%; /* Sets image-content to 25% of browser width */
    }
}

header h1 {
    font-size: 2rem;
    margin-bottom: auto;
}

main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.text-content, .image-content {
    flex: 1;
	text-align: left;
}

.text-content h1 {
    font-size: 2rem;
    margin-bottom: auto;
}

.text-content p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.text-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-content a:hover {
    color: #0073e6; 
}

.image-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

footer {
    text-align: center;  /* Centers text and inline elements in the footer */
}

footer img {
    width: 100px;
    margin-top: 30px;
    opacity: 1;
    align-items: center;
}