header {
    background-image: url('pictures/adrien-olichon-RCAhiGJsUUE-unsplash.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 80vh; /* Full height of the viewport */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    color: white;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    cursor: default;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    cursor: pointer;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    /* padding: 20px; */
    color: black; /* Adjust color as necessary */
}

section {
    max-width: 800px; /* Limit width of content */
    margin: 0 auto; /* Center the section */
    text-align: left; /* Align text left */
}

@media screen and (max-width: 414px) {
    nav ul li {
        display: block;
        margin: 15px 0;
    }
}