@import url('./fonts.css');

body {
	background: #222222;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	text-align: center;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
    overflow: hidden;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-50 {
    margin-bottom: 50px;
}

.header {
    position:absolute;
    top: 25vh;
    left: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.10;
    transform: rotate(-45deg);
}

.header h1 {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 80px;
    line-height: 1;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.header h2 {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: lighter;
    font-size: 45px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.header .logo {
    width: 170px;
    margin-right: 50px;
}


@media (max-width: 620px) {

    .header {
        top: 13vh;
        left: 15%;
        transform: rotate(35deg);
    }

    .header h1 {
        font-size: 50px;
    }
    
    .header h2 {
        font-size: 25px;
    }

    .header .logo {
        width: 100px;
        margin-right: 25px;
    }
}




.datagrid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.datagrid-item {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 12px;
}

.datagrid-title{
    text-transform: uppercase;
    font-size: 15px;
    font-weight: lighter;
}

.datagrid-content{
    font-size: 17px;
}

.datagrid-content a {
	text-decoration: none;
    color: inherit;
}


@media (max-width: 620px) {

    .datagrid-item {
        width: 100%;
    }
}


h1 {
	font-size: 2rem;
	margin: 0 0 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
}

p {
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 12px;
}

footer p {
	font-size: 12px;
}

footer p a {
	text-decoration: none;
    color: inherit;
}