/*
	----------------------------------------------------------------------------
	File
	style.css

	Description
	CSS for Solterra website.

	Author
	Devin Walz
	dwalz@sunlandasphalt.com

	Company
	Solterra Materials LLC

	Date Modified
	2020.08.28
	----------------------------------------------------------------------------
*/

*
{
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

a.linkCareers
{
    background-color: #7DB449;
    color: #FFFFFF;
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

a.linkCareers:hover
{
    background-color: #FFFFFF;
    color: #7DB449;
}

body
{
    display: flex;
    flex-flow: column nowrap;
    margin: 0;
    min-height: 100vh;
    width: 100vw;
}

html
{
    background: url(landing-page-photo-1c-high.jpg) no-repeat center fixed;
    background-size: cover;
    color: #FFFFFF;
    font-size: calc(16px + (8 * ((100vw - 320px) / 1600)));
}

div.contentContainer
{
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    justify-content: center;
    padding: 1rem;
}

div.contentContainer > div + div
{
    margin-top: 1.5rem;
}

div.headerContainer
{
    background-color: rgba(255, 255, 255, 0.75);
    padding: 1rem;
}

div.heading
{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

div.logoContainer > svg
{
    height: 2.5rem;
    width: auto;
}

div.officeInfo
{
    font-size: 1.5rem;
    text-align: center;
}

@media screen and (max-width: 320px)
{
    html
    {
        font-size: 16px;
    }
}