   #email_pref body {
      padding: 50px;
      background: #FFFFE5;
      color: #0A0A0A;
    }
    
    * {  
    	font: 14px "Open Sans", Helvetica, Arial, sans-serif;
    }
    
    #logo {
    	max-width: 230px;
    	max-height: 50px;
    	display:block;
    	margin: 30px auto;
    }
    
    a {
      color: #00B7FF;
    }
    
    h1 {
    	font-size: 50px;
    	font-weight:300;
    	text-align:center;
    }
    
    #email_pref h1 {
    	text-align: center;
    }
    
    #buttons {
    	width: 700px;
    	margin:0px auto;
    	padding-top:10px;
    	display: -webkit-flex; /* Safari */
        -webkit-justify-content: space-between; /* Safari 6.1+ */
        display: flex;
        justify-content: space-between;
    
    }
    .btnTrack {
	background-color: white;
	border-radius: 0.25rem;
	border: none;
	box-shadow: 0 0.16667rem 0.25rem rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
	color: #0031e2;
	cursor: pointer;
	font-size: 1.3rem;
	display: inline-block;
	line-height: 1.25;
	margin: 0.25em 0;
	padding: 1.5rem 2rem;
	text-decoration: none;
	transition: all 60ms linear;
	vertical-align: top;
	width:100%;
  max-width:300px;

	}
	#subscribe[data-status="success"] {
	  color: #fff;
    background-color: #13c899;
    -webkit-box-shadow: 0 0.16667rem 0.25rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.16667rem 0.25rem 
	}
 
    #subscribe {

    }
    #unsubscribe[data-status="success"] {
      background: #E73C7E;
      color:white;
    }
    #subscribe {
    }
    
    #unsubscribe {
    	-webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    text-decoration: underline;
    }
    
    @media screen and (max-device-width: 520px) { 
    
    	h1 {
    		font-size: 45px;
    		padding: 0 20px 0 20px;
    	}
    	#buttons {
    		width: 100%;
    		padding: 2%;
    		display:block;
    		justify-content: flex-start;
    	}
    
    	.btnTrack {
    		display: block;
    		width: 100%;
    		max-width:100%;
    		padding: 40px;
    		margin: 10px auto 20px auto;
    		font-size:2rem;
    	}
    }