html {
    margin: 0; 
    padding: 0; 
    border: 0; 
    outline: 0; 
    font-size: 100%; 
    vertical-align: baseline; 
    background: transparent;
}
html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-size: 1rem; 
    line-height: 1; 
	margin: 0; 
    background: #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.container {
    width: 90vw; 
    max-width: 800px;
    max-height: 90vh; margin: 5vh auto;
	background: #fff;
	min-height: auto; position: relative;
    border-radius:8px;
    box-sizing: border-box;
    padding: 25px 40px;
}

.container::before {
    content: '';
    background-color: #4c72ff;
    padding: 0.375rem;
    width: 100%; height:100%;
    top: -0.375rem; left: -0.375rem;
    position:absolute;
    border-radius:0.75rem;
    z-index:-1;
}

.header {
	text-align: center;
}

.body {
	/* padding: 1rem; */
	text-align: center;
}
h1 {
    font-family: "Inter", sans-serif;
    font-size: 36px;
}

p {
    line-height: 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
}
.body a, .body a:link, .body a:visited {
	color: #4c72ff;
}
.body a:hover {
	color: rgb(000,000,000);
	text-decoration: underline;
}

.footer {
	text-align: center;  
}

.footer p {
    font-size: 14px;  
}

img {
    /* width: 100%; */
    max-width: 300px;
    height: auto;
}

@media screen and (max-width: 500px) { 

    h1 {
        font-size: 24px;
    }

    p {
        line-height: 22px;
        font-size: 16px;
    }

    .container {
        padding: 20px;
    }

    img {
        max-width: 200px;
    }

    body {
        display: inline;
    }
}