*{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
:root {
    --PrimaryAccent: #7209B7;
    --SecondaryAccent: #333333;
    --Black: #14110F;
    --white:#f8f7f2;
}
html{
    background-color: var(--Black);
}

body{
    overflow-x: hidden;
    max-width: 100%;
}
@media (min-width:2200px){
    html{
    background-color: var(--Black);
    display: flex;
    align-items: center;
    justify-content: center;
    }
    body{
        max-width: 2200px;
    }
}
.blogQuoteText{
    font-size: 20px;
    color: #000000;
    font-weight: 400;

}

.fa-quote-left{
    color: var(--PrimaryAccent);
}

.blogTitleSection{
    margin-top: 150px !important;
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items:center;
    color: var(--white);
}


.blogTitleSection h1{
    font-size: 64px;
    font-weight: 700 !important;
    font-family: "Staatliches", sans-serif;
    font-style: normal;
    padding: 0;
    margin-top: 8px;
    margin-bottom: 16px;
}
.blogTextSectionLeftAligned h2, .blogTextSectionCenterAligned h2, .blogPhotoText h2{
    font-size: 48px !important;
    font-weight: 600 !important;
    font-family: "Staatliches", sans-serif;
    font-style: normal;
    margin-top: 8px;
    margin-bottom: 16px;
    color: var(--white);
}
.blogTitleSection p{
    font-size: 20px !important;
    padding: 0;
    margin: 0;
}

.blogTitleSection, .blogTextSectionLeftAligned, .blogTextSectionCenterAligned, .blogPhotoText, .singlePhoto, .blogTwoPhotos, .shareContainer{
    margin-inline: 10% !important;
    color: var(--white);
}

@media (max-width:1200px) {
    .blogTitleSection, .blogTextSectionLeftAligned, .blogTextSectionCenterAligned, .blogPhotoText, .singlePhoto, .blogTwoPhotos, .shareContainer{
        margin-inline: 5% !important;
    }
    .blogTitleSection, .blogTextSectionLeftAligned, .blogTextSectionCenterAligned, .blogPhotoText, .singlePhoto, .blogTwoPhotos{
        font-size: 20px;
    }
}
@media (max-width:480px) {
    h1{
    font-size: 64px;
    font-weight: 700 !important;
    }
}
 
.sectionSeperator{
    margin-block: 64px;
}
@media (max-width:480px) {
    .sectionSeperator{
        margin-block: 32px;
    }
}
.blogTextSectionCenterAligned{
    text-align: center;
}

.largeImage img{
    transition: 1s;
}
.largeImage img:hover{
    transform: scale(1.05);
    transition: 1s;
}
.blogPhotoText img, .blogTwoPhotos img{
    width: 100%;
    border-radius: 8px;
    align-self: center;
}

/* On small screens make image come before text, text and image align centre and change padding and margins */
@media (max-width: 950px) {

    .blogPhotoText img, .blogTwoPhotos img{
        padding: 5px;
        width: 70%;
        justify-self: center;       
    }
}
@media (max-width: 920px) {

    .blogPhotoText .largeImage .justify-content-center{
        justify-content: flex-start!important;    
    }
}

.singlePhoto{
    display: flex;
    align-items: center;
    justify-content: center;
}
.singlePhoto img{
    transition: 1s;
    width: 80%;
    max-height: 1200px;
}
.singlePhoto img:hover{
    transform: scale(1.05);
    transition: 1s;
}



.shareContainer {
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.shareContainer h3 {
    margin-bottom: 10px;
    font-size: 48px !important;
    font-weight: 600 !important;
    font-family: "Staatliches", sans-serif;
    font-style: normal;
    margin-top: 8px;
    margin-bottom: 16px;
}


.share-buttons {
    list-style: none;
    padding: 0;
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.share-buttons li a {
    text-decoration: none;
    font-size: 32px;
    color: var(--white);
    transition: color 0.3s;
}
/*
.share-buttons li a:hover {
    color: #0077b5;  default hover color 
}*/

/* Custom colors per platform */
.facebook:hover { color: #3b5998; }
.twitter:hover { color: #1da1f2; }
.pinterest:hover { color: #bd081c; }
.whatsapp:hover { color: #25d366; }
.email:hover { color: #dd4b39; }

#spinLogo{
    filter: invert(97%) sepia(6%) saturate(308%) hue-rotate(30deg) brightness(105%) contrast(94%);
}