/* 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-nav h2 {
    cursor: pointer;
    font-family: "Merienda", cursive;
    font-size: 30px;
    margin: 5px;
}

/* Main Section */
main h1 {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
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;
}
main p:last-of-type {
    font-family: 'Cagliostro', sans-serif;
    margin: 10px 0px 10px 0px;
}

/* Footer Section */
footer {
    z-index: 1;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Main Section */
    main {
        width: 90%;
        margin: 0 auto 0 auto;
        padding: 60px 0px 0px 0px;
        z-index: 1;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Main Section */
    main {
        width: 80%;
        margin: 0 auto 0 auto;
        padding: 60px 0px 0px 0px;
        z-index: 1;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Main Section */
    main {
        width: 60%;
        margin: 0 auto 0 auto;
        padding: 60px 0px 0px 0px;
        z-index: 1;
    }
}