/* Main Nav Section */
#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20px);
    padding: 0px 10px 0px 10px;
    background-color: whitesmoke;
    position: fixed;
    top: 0;
    z-index: 2;
}

/* Main Section */
main {
    padding: 60px 0px 0px 0px;
    z-index: 1;
}

/* Intro Section */
h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
}
#intro-section p {
    font-family: 'Cagliostro', sans-serif;
}

/* Footer Section */
footer {
    z-index: 1;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Main Nav Section */
    #main-nav h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 25px;
        margin: 5px;
    }

    /* Intro Section */
    #intro-section {
        width: 90%;
        margin: 10px auto 10px auto;
    }

    /* Images Section */
    #images-section {
        width: 90%;
        margin: 10px auto 10px auto;
        display: flex;
        flex-flow: row wrap;
    }
    #images-section picture {
        width: calc(100% - 10px);
        height: 320px;
        cursor: pointer;
        margin: 5px;
    }
    #images-section img {   
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: center;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Main Nav Section */
    #main-nav h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 30px;
        margin: 5px;
    }

    /* Intro Section */
    #intro-section {
        width: 60%;
        margin: 10px auto 10px auto;
    }

    /* Images Section */
    #images-section {
        width: 80%;
        margin: 10px auto 10px auto;
        display: flex;
        flex-flow: row wrap;
    }
    #images-section picture {
        width: calc(33% - 10px);
        height: 350px;
        cursor: pointer;
        margin: 5px;
    }
    #images-section img {   
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: center;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Main Nav Section */
    #main-nav h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 30px;
        margin: 5px;
    }

    /* Intro Section */
    #intro-section {
        width: 50%;
        margin: 10px auto 10px auto;
    }

    /* Images Section */
    #images-section {
        width: 80%;
        margin: 10px auto 10px auto;
        display: flex;
        flex-flow: row wrap;
    }
    #images-section picture {
        width: calc(33% - 10px);
        height: 400px;
        cursor: pointer;
        margin: 5px;
    }
    #images-section img {   
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }
}