html {
    margin: 0 !important;
}

body {
    font-size: var(--base-font-size);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    &:hover,
    &:focus {
        color: var(--hover-colour);
        text-decoration: none;
    }
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

ul,
ol {
    &.no-bullets {
        list-style: none;
    }
    &.list-inline {
        li {
            display: inline;
        }
    }
}

.courageous-btn {
    background-color: var(--site-branding-colour);
    box-shadow: 0px 4px 11px 1px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    padding: 12px 50px;
    color: #fff;
    &:hover,
    &:focus {
        color: #000;
    }
}


/* social icons */

.social-icons {
    .social-list {
        margin: 0;
        li {
            display: inline;
            margin-right: .5em;
            &:last-child {
                margin-right: 0;
            }
            a {
                i {
                    font-size: 30px;
                }
            }
        }
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.p-0 {
    padding: 0;
}

// beer slider 
body {
    .beer-slider {
        img {
            height: 350px;
            width: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}