body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

a {
    color: inherit; /* Make the link color inherit from the parent element */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Optional: Add underline on hover for visual feedback */
}

header h1 {
    font-size: 80px; /* Set the desired font size for <h1> */
    margin-bottom: 0;
}

header p {
    margin-top: 0; /* Remove top margin to reduce space */
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 12px; /* Reduce font size for <h1> on smaller screens */
    }

    header h1 {
        font-size: 25px; /* Adjust font size for <h1> within <header> on smaller screens */
    }

    footer p {
        font-size: 10px; /* Adjust font size for <h1> within <header> on smaller screens */
    }
}

header {
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center;
    height: 10vh;
    color: white;
    background: #333;
    padding: 0 20px; /* Optional: Add padding if needed */
}

section, footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    color: white;
}

footer {
    background: #333;
    height: 5vh;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#section1 {
    display: flex;
    align-items: center;
    height: 25vh;
}

#section1 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: white; /* Set background to white */
}

#section1 .content {
    content: '';
    background-image: url("images/intro.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60vh;
    height: 15vh;
    flex-shrink: 0;
}

#section2 {
    display: flex;
    align-items: center;
    background-color: #333;
    height: 10vh;
}

#section3 {
    display: flex;
    align-items: center;
    height: 25vh;
}

#section3 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    /* padding: 10px; */
    background-color: white; /* Set background to white */
}

#section3 .content {
    content: '';
    background-image: url("images/views.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60vh;
    height: 15vh;
    flex-shrink: 0;
}

#section4 {
    display: flex;
    align-items: center;
    background-color: #333;
    height: 5vh;
}

#section4 h1 a {
    text-decoration: underline;
}
