html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.gradient {
    background: linear-gradient(120deg, #7f70f5, #0ea0ff);
    color: #fff;
}

.lightBlue{
    
    color:lightblue

}
.bg-Nick {
    background-color: #e7feff
}

.bgImageNick {
    background-image: url("../Images/gymEquipment.jpg");
    background-color: transparent;
    height: 100vh;
    margin: 0;
    padding: 0;
}

    

.bgImageNick2  {
    position: fixed;
    top: 0;
    left: 0;
    /* Preserve aspet ratio */
    min-width: 100%;
    min-height: 100%;
}
/* css for about me page to get the text to dispaly properly relative to the picture*/
#textNormal {
    font-size: 3vw;
    background-color:#e7feff;
}
 
/*What happens at medium breakpoint*/
@media screen and (min-width:768px) {
    #textNormal {
        font-size: 2.0vw;
    }
}
/*What happens at lg breakpoint*/
    @media screen and (min-width:992px) {
        #textNormal {
            font-size: 1.9vw;
        }
    }
/*What happens at xl breakpoint*/
@media screen and (min-width:1200px) {
    #textNormal {
        font-size: 1.4vw;
    }
}
/*  End of css for about me page to get the text to dispaly properly relative to the picture*/

/* css for Landing page to get the Business name text to display properly relative to the mask*/
#textRevitalise {
    font-size: 8vw;

}

/*What happens at medium breakpoint*/
@media screen and (min-width:768px) {
    #textRevitalise {
        font-size: 5vw;
    }
}
/*What happens at lg breakpoint*/
@media screen and (min-width:992px) {
    #textRevitalise {
        font-size: 5vw;
    }
}
/*What happens at xl breakpoint*/
@media screen and (min-width:1200px) {
    #textRevitalise {
        font-size: 3vw;
    }
}
/* end of css for Landing page to get the Business name text to dispaly properly relative to the mask*/


/*Start of Cookie consent popup*/
#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

    #cookieConsentdiv button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        background-color: green;
        padding: 10px 50px;
        margin-top: -5px;
        color: white;
        transition: all ease 0.5s;
    }

        #cookieConsentdiv button:hover {
            background-color: darkgreen;
        }

    #cookieConsentdiv h3 {
        font-size: 22px;
    }

    #cookieConsentdiv p {
        font-size: 13px;
    }

    #cookieConsentdiv a {
        color: gray;
        text-decoration: underline;
    }

    /*End of cookie consent css*/

/* Start of FAQ css*/
.faq-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
}

.faq-item {
    margin-bottom: 20px;
}

/*.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: sans-serif;
}*/

.faq-answer {
    margin: 0;
    display: none;
    font-family: sans-serif;
}
/*End of FAQ css*/

/*Section for testing fonts*/
.fontNick {
    font-family: 'Poppins', sans-serif;
}

/*End of Section for testing fonts*/

/*Section for testing font size*/
.fontSizeNick {
    font-size: 5rem;
}

.indieflower {
    font-family: 'Indie Flower', cursive;

}

.roboto {

    font-family: 'Roboto Mono', monospace;
}

/*End of Section for testing font size*/

/*Section to add background color to pop ups*/
.modal-color{
    background-color:lightblue;
}
/*End of Section to add background color to pop ups*/

/* Section to display different splash screen on small viewports*/
/* Default styles for larger viewports */
#row1 {
    background-image: url("../Images/revitaliseSplashScreen2.JPG");
    background-color:transparent;

}

/*What happens at medium breakpoint*/
@media screen and (max-width:768px) {
    #row1 {
        background-image: url("../Images/revitaliseSplashScreen2.JPG");
    }
}








