html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

section {
    outline: none;
}

.gg-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gg-wrapper__container {
    flex-grow: 1;
}

.gg-container {
    max-width: 1024px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.gg-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: #c5ae55;
    border: 2px solid #c5ae55;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0px 5px 15px -5px rgba(197, 174, 81, 0.7);
}

.gg-button:hover,
.gg-button:focus, 
.gg-button:active  {
    box-shadow: 0px 0px 10px 0px rgba(197, 174, 81, 0.7);
}

.gg-button--outline {
    background-color: transparent; 
    color: #fff;
}

.gg-button--outline:hover,
.gg-button--outline:focus,
.gg-button--outline:active   {
    background-color: #c5ae55;
    color: rgba(0, 0, 0, 0.7);
}

.gg-title {
    position: relative;
    font-size: 30px;
    padding-bottom: 15px;
    margin: 0;
    text-align: center;
}

.gg-title:after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    position: absolute;
    height: 2px;
    width: 60px;
    content: '';
    background-color: #c5ae55;
}

.gg-accent {
    color: #c5ae55;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Libre Baskerville', serif;  
}