/* Header section */
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 article {
    width: calc(50% - 20px);
    padding: 10px;
}
header h3 {
    font-family: 'Times New Roman', Times, serif;
}
header p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px 0px 5px 0px;
    padding: 0;
}

/* Main Section */
#mobile-section1 h3 {
    font-family: 'Times New Roman', Times, serif;
}
#mobile-section1 p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px 0px 5px 0px;
    padding: 0;
}

/* Full View Section */
#full-view-section picture {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
#full-view-section img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

#full-view-section article {
    width: calc(50% - 20px);
    padding: 10px;
}
#full-view-section h3 {
    font-family: 'Times New Roman', Times, serif;
}
#full-view-section p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px 0px 5px 0px;
    padding: 0;
}

#mobile-section2 h3 {
    font-family: 'Times New Roman', Times, serif;
}
#mobile-section2 p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px 0px 5px 0px;
    padding: 0;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Header section */
    header {
        width: 100%;
        height: 70vh;
        margin: 60px 0px 0px 0px;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    header section {
        position: absolute;
        background-color: white;
        padding: 10px;
        display: none;
        flex-direction: column;
        width: 80%;
        margin: 0;
        visibility: hidden;
    }

    /* Main Section */
    #mobile-section1 {
        display: flex;
        flex-direction: column;
    }
    #mobile-section1 article {
        width: calc(100% - 20px);
        padding: 10px;
        visibility: hidden;
    }

    /* Full View Section */
    #full-view-section {
        width: 100%;
        height: 70vh;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    #full-view-section section {
        position: absolute;
        background-color: white;
        padding: 10px;
        display: none;
        flex-direction: column;
        width: 80%;
        margin: 0;
        visibility: hidden;
    }

    /* Mobile Section2 */
    #mobile-section2 {
        display: flex;
        flex-direction: column;
    }
    #mobile-section2 article {
        width: calc(100% - 20px);
        padding: 10px;
        visibility: hidden;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header section */
    header {
        width: 100%;
        height: 80vh;
        margin: 60px 0px 380px 0px;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    header section {
        position: absolute;
        top: 80%;
        left: 5%;
        background-color: white;
        padding: 10px;
        display: flex;
        width: 90%;
        margin: 0;
        visibility: hidden;
    }

    /* Main Section */
    #mobile-section1 {
        display: none;
    }

    /* Full View Section */
    #full-view-section {
        width: 100%;
        height: 80vh;
        margin: 0px 0px 380px 0px;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    #full-view-section section {
        position: absolute;
        top: 80%;
        left: 5%;
        background-color: white;
        padding: 10px;
        display: flex;
        width: 90%;
        margin: 0;
        visibility: hidden;
    }

    /* Mobile Section 2 */
    #mobile-section2 {
        display: none;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Header section */
    header {
        width: 100%;
        height: 80vh;
        margin: 60px 0px 380px 0px;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    header section {
        position: absolute;
        top: 80%;
        left: 15%;
        background-color: white;
        padding: 10px;
        display: flex;
        width: 70%;
        margin: 0;
        visibility: hidden;
    }

    /* Main Section */
    #mobile-section1 {
        display: none;
    }

    /* Full View Section */
    #full-view-section {
        width: 100%;
        height: 80vh;
        margin: 0px 0px 380px 0px;
        padding: 0;
        position: relative;
        z-index: 1;
    }
    #full-view-section section {
        position: absolute;
        top: 80%;
        left: 15%;
        background-color: white;
        padding: 10px;
        display: flex;
        width: 70%;
        margin: 0;
        visibility: hidden;
    }

    /* Mobile Section 2 */
    #mobile-section2 {
        display: none;
    }
}