/* Header Section */
header {
    width: 100%;
    height: 70vh;
    margin: 0;
    padding: 0;
    position: relative;
}
header picture {
    width: 100%;
    height: 70vh;
}
header img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
}
#header-background {
    z-index: 1;
    width: 100%;
    height: 70vh;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Main Section */
main h2 {
    margin: 10px 10px 5px 0px;
    font-size: 25px;
}
main a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
main p {
    margin: 5px 0px 0px 0px;
}

@media only screen and (max-width: 600px) {
    /* Header Section */
    h1 {
        font-family: 'Cormorant', serif;
        font-size: 40px;
        position: absolute;
        top: 40%;
        left: 20%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }
    header p {
        position: absolute;
        top: 55%;
        left: 20%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }

    /* Main Section */
    main {
        width: 90%;
        margin: 20px auto 10px auto;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    h1 {
        font-family: 'Cormorant', serif;
        font-size: 60px;
        position: absolute;
        top: 35%;
        left: 34%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }
    header p {
        position: absolute;
        top: 65%;
        left: 39%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }

    /* Main Section */
    main {
        width: 80%;
        margin: 20px auto 10px auto;
    }
}

@media only screen and (min-width: 1025px) {
    /* Header Section */
    h1 {
        font-family: 'Cormorant', serif;
        font-size: 60px;
        position: absolute;
        top: 40%;
        left: 40%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }
    header p {
        position: absolute;
        top: 70%;
        left: 44%;
        text-align: center;
        color: white;
        z-index: 2;
        visibility: hidden;
    }

    /* Main Section */
    main {
        width: 60%;
        margin: 20px auto 10px auto;
    }
}