*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body,
header,
main,
footer {
    width: 100%;
}

/* max sizes for different elements */
.max-width-stackable {
    max-width: 500px;
    padding: 20px;
}

.max-width-nonstackable {
    max-width: 1000px;
    padding: 20px;
}

#slider.carousel {
    max-width: 1400px;
    margin: 0 auto;

    & .carousel-inner {
        img {
            max-width: 1000px;
            margin: 0 auto;
        }
    }
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;

    & .container-fluid {
        max-width: 1000px;

        & .navbar-brand {
            padding-top: 0;
            padding-bottom: 0;
            color: #333;
            font-weight: 700;
            font-size: 1.8rem;
            line-height: 20px;

            & img {
                height: 36px;
            }
        }
    }
}

nav.max-height-nav {
    max-height: 44px;
    min-height: 44px;
    padding: 0;
    margin: 20px;
}

footer a.logo {
    & img {
        max-height: 50px;
    }

    color: #fff;
}

/* this applies to the section that has to be 100% wide so the bg color applies properly
to the width (footer section) */
.coloured-bg {
    min-width: 100%;
    color: white;
    background-color: hsl(192, 100%, 9%);
}

/* this is set for the wavy img so it is always 100% width and auto resizes height  */
.bgImg {
    height: auto;
    min-width: 100%;
    max-width: 100%;
    max-height: 150px;
}

/* this is the color for the main section with background */
.layout-bg {
    background-color: hsl(207, 100%, 98%);
}

.attribution {
    margin: 0;
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

/* removing everything from ul and li */
ul,
li {
    -webkit-padding-start: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

/* img suto scale while maintaining svg ratio */
img {
    /*max-height: auto;*/
    max-width: 100%;
    /*padding: auto;*/
}

/* social media logos size  and active */
.mediaContainer {
    position: relative;
}

.logoContainer:hover {
    transition: all 0.1s;
    opacity: 1.0;
}

.socialMediaLogo {
    max-width: 27px;
    transition: all 0.1s;
}

.socialMediaLogo:hover {
    opacity: 0;
}

.socialMediaLogoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.0;
    max-width: 27px;
    transition: all 0.3s;
}

.socialMediaLogoOverlay:hover {
    opacity: 1.0;
}

/* messages and communities img */
.minIconHeight {
    min-height: 2em;
    max-height: 2em;
    width: auto;
}

/* headings font size and type */

.headingsFont {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* font for the rest of the body  */
.bodyFont400 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* font colours  */
.whiteFont {
    color: white;
}

.pinkFont {
    color: hsl(322, 100%, 66%);
}

.lightPinkFont {
    color: hsl(321, 100%, 78%);
}

.boton {
    font-size: 0.75em;
    padding: 0.25em 0;
    border-radius: 0.5rem;
    background-color: hsl(322, 100%, 66%);
    text-decoration: none;
    font-weight: 600;
    height: 36px;
    width: 100%;
    transition: all 0.3s;
}

.boton:hover {
    background-color: hsl(321, 100%, 78%);
    color: white;
}

/*@media screen and (min-width: 576px) {*/
/*    .bodyFont400 {*/
/*        text-align: start;*/
/*    }*/
/*}*/
