body{

}
body {
   
background:#FFFAEE;
    display: grid;
    place-items: center;
   
}
body .content {
    max-width: 800px;
width: 100%;
    min-height: calc(100vh);
   
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-align: center;
}

body .content .header {
    position: fixed;
}
body .content .main {
    width: 100%;
	margin-top: 10px;
}
body .content .footer {
  
    position: fixed;
    bottom: 20px;

}

.logo{
	text-align: center;
}
.logo img{
	 
}
.links{
	text-align: center;
}

.links ul{
	margin: 0;
    padding: 0;
    list-style: none;
}
.links ul li{
	
    margin-bottom: 8px;

 
}

 
.links ul li a{
font-size: 19px;
    font-weight: 600;
    color: #99C220;
    border: 2px solid #99C220;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    min-width: 240px;
	 text-decoration: none;

}

 