body {
    margin: 0;
    padding: 0; 
    background-color: #fafafa;
    font: normal 1.3em system-ui;
    color: rgb(59, 59, 59);
}

.ireland-img-m {
    width: 100%;
}

header {
    height: 5em;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    transition: background-color 0.3s ease-in-out;
}

header.scrolled {
    background-color: rgb(41, 41, 41);
}

header nav {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
}

header nav a {
    text-decoration: none;
    color: rgb(66, 66, 66);
    margin-right: 1em;
    transition: color 0.3s ease-in-out;
}

header.scrolled nav a {
    color: white;
}

.content {
    margin: 0 auto;
    max-width: 1200px;
    height: 1500px;
}

.content p {
    padding-bottom: 16px;
}

.australia-description {
    display: flex;
    gap: 30px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.australia-description img {
    width: 500px;
}

.australia-description p {
    margin: 0;
    width: 500px;
}

footer p {
    margin: 0;
    background-color: rgb(41, 41, 41);
    color: #fff;
    text-align: center;
    font-size: 0.6em;
    padding: 4px;
}

footer p a {
    text-decoration: none;
    color: #fff;
}