/* YOU ARE VIEWING THE DESKTOP CSS */

body {
    background-image: url("allPageImages/bg.png");
    background-attachment: fixed;
    color: black;
    font-size: 12pt;
}

.bodyContent {
    display: block;
    padding: 60px;
    margin-left: 15%;
    margin-right: 15%;
    background-color: lemonchiffon;
    font-size: 12pt;
    color: black;
    text-align: center;
    text-indent: 30px;
}

.bodyContent_SS {
    display: block;
    padding: 60px;
    margin-left: 15%;
    margin-right: 15%;
    background-color: #0d120d;
    font-size: 12pt;
    color: white;
    text-align: center;
}

ul {
    text-align: left;
}

.logoImg {
    width: clamp(200px, 60%, 60%);
}

h2 {
    text-indent: 0px;
}

/* BLOG */

.blogPrevContainer {
    display: block;
    background-color: #fffbe6;
    text-align: left;
    font-size: 12pt;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
}

.blogPrevContainer > h2 {
    text-indent: 0;
}

/* GALLERY PREVIEW */

.titleButtonHolder {
    display: flex;
    width: 93%;
    justify-content: space-between;
    margin-top: 50px;
}

.viewButton {
    display: block;
    background-color: #fffbe6;
    padding: 20px 30px;
    text-align: center;
    font-size: larger;
    width: fit-content;
    float: left;
}

.viewButton:hover {
    text-decoration: none;
    color: black;
    background-color: #dfd896;
}

.viewButton a {
    text-decoration: none;
    color: black;
}

.previewGlry {
    border-spacing: 5px;
    display: table;
    table-layout: fixed;
    width: 90%;
}

.previewGlry div {
    display: table-cell;
}

.previewGlry img {
    width: 100%;
}

/* GALLERY */

* {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    margin-left: 0;
    margin-right: 0;
    text-indent: 0px;
}

.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

@media (max-width: 1500px) {
    .column {
        flex: 33%;
        max-width: 33%;
    }
}

@media (max-width: 900px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

@media (max-width: 900px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}
