
*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#ffffff;
color:#1F5D3A;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
text-align:center;
padding:20px;
}

.container{
max-width:800px;
width:100%;
}

.logo{
width:220px;
margin-bottom:30px;
}

h1{
font-size:48px;
margin-bottom:10px;
}

.tagline{
font-size:20px;
color:#5A3E2B;
margin-bottom:40px;
}

footer{
font-size:14px;
color:#777;
}

/* Mobile */

@media (max-width:768px){

.logo{
width:160px;
}

h1{
font-size:36px;
}

.tagline{
font-size:18px;
}

}
