
@font-face {
  font-family: "Alphabet Sans Pro Light";
  src: url('https://prd.content.aladin.azure.bmw.cloud/email/AlphabetSansPro-Light.woff2') format("woff2");
  src: url('https://prd.content.aladin.azure.bmw.cloud/email/AlphabetSansProTT-Light.woff') format("woff");
  font-style: normal; 
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Alphabet Sans Pro Light', sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden; /*don't want scroll bar to appear.*/
    margin: 0;
	padding: 112px 0 38.2vh;
    background-color: #FFF;
    
}

#header{
	background-color: rgb(30, 35, 110);
	min-height: 112px;
    display: block;
	position: fixed;
	width: 100%;
	top: 0;
	padding: 40px 0 30px 48px;
}

.hidebuttons{
    display:none;
}

#footer{
	background-color: #303787;
	min-height: 48px;
    display: block;
	position: fixed;
	width: 100%;
	bottom: 0;
	padding: 8px;
	text-align: center;
	font-size: 16px;
    line-height: 1.5;
	font-weight: 300;
}
#footer a {
	color: #ffffff;
	padding: 0 16px;
	border-right: 1px solid #6068B8;
}

#footer a:last-child {
	border-right: 0;
}

.logo{
    height: 22px;	
}

.icon {
    display: block;
    width: 100%;
    padding: 1rem 33%;
}

.content {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
}

.top-content {
    display: flex;	
    width: 100%;
    padding: 1rem;
    text-align: left;
}

.main-content {
    display: block;	
    width: 100%;
    padding: 1rem;
    text-align: left;
}

.image {
    max-height: 100%;
    max-width: 100%;
    border-radius: 0.4rem;
    box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.1), 0px 1px 5px rgba(0, 0, 0, 0.1);
}

h1 {
	padding: 1rem 0 0;
	margin: 0;
    font-size: 2.4rem;
    color: #1E236E;
}

p {
	margin: .3rem 0 2rem;
    font-size: 15px;
    color: #808080;
}

@media screen and (max-width: 1920px) {

	#header{
		min-height: 70px;
		padding: 24px 0 22px 24px;
	}

   
}


@media screen and (max-width: 375px) {


    h1{
        font-size: 5vw;
    }

    p {
        font-size: 3.2vw;
        padding: 0 1vw;
    }
   
}