:root {
    --site-color01: #a1b776;
    --site-color01-hover: #7c8f56;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #1e1e1e;
}

body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -3;
    content: url(../images/Facebook\ Colour.png) url(../images/Instagram\ Colour.png);

}

.wrapper-main {
    width: 1199px;
    margin: 0 auto;
}

h1 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;

}

p {
    font-size: 1.6rem;
    line-height: 1.75;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}

a {
    font-size: 1.4rem;
    line-height: 1.75;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}

.header-main {
    width: 100%;
    height: 150px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
}

.header-main-nav {
    width: 120px;
    height: 100%;
}

.header-main-logo {
    width: fit-content;
    height: 50%;
    display: flex;
    margin-top: 30px;
    padding-left: 60px;
    z-index: 100;
}

.header-main-logo img {
    height: fit-content;
    line-height: 150px;
    border-radius: 15px;
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    z-index: 100;
}

.header-main-sm-fb {
    width: 40px;
    height: 40px;
    background-image: url(../images/Facebook\ White.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s
}

.header-main-sm-fb:hover {
    background-image: url(../images/Facebook\ Colour.png);
    opacity: 0.3s;
}

.header-main-sm-ig {
    width: 45px;
    height: 45px;
    background-image: url(../images/Instagram\ White.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s
}

.header-main-sm-ig:hover {
    background-image: url(../images/Instagram\ Colour.png);
    opacity: 0.3s;
}

.background-pic {
    width: 100%;
    background-image: url(../images/Live\ pic.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* The Footer section */

.footer-main > * {
    flex: 1 1 0;
}

.footer-main {
    width: 100%;
    height: 150px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-text-1 {
    text-align: left;
    visibility: hidden;
}

.footer-text-2 { 
    text-align: center;
}

.footer-text-3 {
    text-align: right;
}

/* MOBILE VERSION */

@media only screen and (max-width: 600px) {

    .wrapper-main {
        width: 100%;
    }

    .header-main {
        width: 100%;
        height: 80px;
        padding-left: 40px;
    }
    
    .header-main-nav {
        width: 40px;
        height: 100%;
        display: none;
    }
    
    .header-main-logo {
        display: block;
        margin-top: -12px;
        align-self: center;
        margin-left: -80px;
    }

    .header-main-sm {
        padding-right: 20px;
        column-gap: 5px;
    }
    
    .header-main-sm-fb {
        width: 30px;
        height: 30px;
    }
    
    .header-main-sm-ig {
        width: 30px;
        height: 30px;
    }

        /* The Footer section */

     p {
        font-size: 1.2rem;
        line-height: 1.75;
    }

.footer-main > * {
    flex: 1 1 0;
}

.footer-main {
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;
}

.footer-text-1 {
    display: none;
}

.footer-text-2 {
    font-size: 0.8rem;
}


}