body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: white;
}

header {
    background-image: url('pictures/cappuccino_2_copy.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 65vh; /* 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;
    background-repeat: no-repeat;
}

header h1 {
    background-color: #bd9152;
    width: 100%;
    padding: 10px 0;
    color: #310e0e;
}

header h1 .fa {
    /* color: #457e45; */
    padding-left: 5px;
}

main {
    margin: 30px 0;
}

main section {
    width: 60%; /* Limit width of content */
    margin: 0 auto; /* Center the section */
    text-align: left; /* Align text left */
}

#back {
    color: #310e0e;
    text-decoration: underline #310e0e;
}

#back .fa {
    padding-right: 5px;
}

main section h2 {
    color: #457e45;
    border-left: 3px solid #bd9152;
    padding-left: 5px;
    margin: 30px 0;
}

main section p {
    color: #310e0e;
    padding-left: 10px;
}

main section p span {
    font-weight: 600;
}

main section p .fa {
    padding-right: 5px;
}

footer {
    background-image: url(pictures/wojciech-paczes-OWmq7S7QEj0-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 20vh;
}

@media screen and (max-width: 414px) {
    header {
        height: 30vh; /* Full height of the viewport */
    }
    nav ul li {
        display: block;
        margin: 15px 0;
    }
    main section {
        width: 80%;
    }
}