/* Header section */
header {
    width: 100%;
    height: 70vh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
header picture {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
header img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
}
header div {
    z-index: 1;
    width: 100%;
    height: 70vh;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

main h2 {
    font-family: 'Times New Roman', Times, serif;
    margin: 10px 0px 0px 0px;
}
main p {
    font-family: 'Cagliostro', sans-serif;
    margin: 5px 0px 10px 0px;
}
main ul {
    margin: 0;
}
main li {
    font-family: 'Cagliostro', sans-serif;
}
main p:first-of-type {
    font-family: 'Times New Roman', Times, serif;
    text-align: end;
    margin: 10px;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Header Section */
    header h2 {
        font-size: 40px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 40%;
        left: 20%;
        color: white;
        z-index: 2;
    }

    /* Main Section */
    main {
        width: 90%;
        margin: 0 auto 0 auto;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    header h2 {
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 35%;
        left: 35%;
        color: white;
        z-index: 2;
    }

    /* Main Section */
    main {
        width: 80%;
        margin: 0 auto 0 auto;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Header Section */
    header h2 {
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 35%;
        left: 40%;
        color: white;
        z-index: 2;
    }

    /* Main Section */
    main {
        width: 60%;
        margin: 0 auto 0 auto;
    }
}