:root {
    --color-dark-grey: #13151a;
}

.container {
    margin: 0 auto;
    padding: 3rem 1.5rem 3rem 1.5rem;
    max-width: 63.5rem;
}
.bg-dark-grey {
    background-color: var(--color-dark-grey);
}
.w-100
{
    width: 100%;
}
.text-center {
    text-align: center;
}
.d-flex {
    display: flex;
}
.justify-content-between {
    justify-content: space-between;
}
.p-2 {
    padding: 2rem !important;
}
.px-2 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.mt-1 {
    margin-top: 1rem !important;
}
.mt-2 {
    margin-top: 2rem !important;
}

html
{
	font-family: 'Montserrat', sans-serif;
	color: white;
	height: 100%;
	position: relative;
	width: 100%;
}

body
{
	font-size: 1.0625rem;
	height: 100%;
	line-height: 1.4;
    margin: 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	position: relative;
	-webkit-tap-highlight-color: #f3f5f6;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	z-index: 0;
}
a {
  color: white;
  text-decoration: underline;
}

#copyrightFooter
{
	color: white;
	font-size: 0.75rem;
    margin-top: 3rem;
	padding: 3rem 0;
	text-align: center;
}
@media only screen and (max-width: 1080px)
{
    font-size: 0.5rem;
}