/***** BASE STYLES *****/

body{
    background-color: #000000;
	font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 300;
	color: #2b2b2b;
}

/***** GRID *****/

.full-width{
    width: 1200px;
    margin: 0 auto;
}

.half-width{
	width: 600px;
	float: left;
}

.third-width{
	width: 400px;
	float: left;
}

/***** HEADER *****/

header{
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
}

header p{
    display: flex;
    justify-content: center;
}

header a{
    text-decoration: none;
    color: #9F7D23;
}

header img{
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    height: 400px;
}

.nav-links{
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1rem;
    color: #9F7D23;
    list-style-type: none;
}

/***** INVEST *****/

#invest{
    background-color: #000000;
    display: flex;
    height: auto;
    margin: 0 auto;
    clear: both;
}

#invest h3{
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem;
    color: #9F7D23;
    display: flex;
    justify-content: center;
    text-align: center;
}

#invest p{
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
}

#invest a{
    text-decoration: none;
    color: #FFFFFF;
}

.invest-button{
    background-color: #9F7D23;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 6px 12px;
    text-align: center;
    font-size: 1em;
    transition-duration: .3s;
}

.invest-button:hover{
    background-color: #000000;
    color: #9F7D23;
}

/***** FORWARD LOOKING STATEMENTS *****/

#forward-looking-statements{
    margin: 0 auto;
    background-color: #FFFFFF;
    display: flex;
    height: fit-content;
    justify-content: center;
    clear: both;
}
    
#forward-looking-statements h2{
    color: #000000;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
    text-align: left;
}

#forward-looking-statements p{
    color: #000000;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 300;
    font-size: .5rem;
    justify-content: center;
    text-align: left;
}

/***** FOOTER *****/

footer{
    margin: 0 auto;
    background-color: #000000;
    display: flex;
    height: fit-content;
    justify-content: center;
    clear: both;
}

footer p{
    color: #9F7D23;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-align: center;
}