@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.7;
}

.corpus {
    width: 100%;
}

.cleft {
    position: relative;
    float: left;
    border-right: 1px solid;
}

.cright {
    position: relative;
    float: right;
}

/* Header styles */
header {
    font-family: 'Righteous', sans-serif;
    color: #000;
    line-height: 2.7em;
    padding: 20px;
    text-align: left;
}

header h1 {
    font-size: 3.2rem;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    font-size: 1.5rem;
    display: inline;
    margin-right: 18px;
}

header nav ul li a {
    color: #666;
    text-decoration: none;
}

/* Main styles */
.row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

main {
    position: relative;
    top: -16rem;
    font-family: "Poiret One", sans-serif;
    padding: 20px;
    margin-left: 350px;
}

/* Section styles */
section {
    font-family: "Poiret One", sans-serif;
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

section a {
    color: #666;
}

/* Gallery styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.photo {
    flex: 1 0 200px;
    /* Adjust photo width as needed */
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer styles */
footer {
    font-family: "Poiret One", sans-serif;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}


/* Social media links */

.social-media a {
    display: inline-block;
    margin-right: 10px;
}


/* Newsletter form */

.newsletter {
    margin-top: 20px;
}


/* Responsive styles */

/*@media (max-width: 500px) {
    header h1 {
        font-size: 1.5em;
    }
}*/

@media only screen and (max-width: 1000px) {
    
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }

}

@media only screen and (max-width: 900px) {

    header {
        font-family: 'Righteous', sans-serif;
        color: #000;
        line-height: 2.7rem;
        padding: 20px;
        text-align: left;
    }

    header h1 {
        font-size: 3.2rem;
    }

    .column {
        -ms-flex: 25%;
        /* IE10 */
        flex: 25%;
        max-width: 25%;
        padding: 0 4px;
    }

    main {
        position: relative;
        top: 0px;
        font-family: 'Courier New', Courier, monospace;
        padding: 20px;
        margin-left: 0px;
    }

}

@media only screen and (max-width: 680px) {

    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }

}

@media only screen and (max-width: 500px) {

    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }

}