html, body {
    min-height: 100%;
}
body {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: #333;
    flex-direction: column;
    padding: 1rem;
}
a {
    color: #333;
}
a:hover {
    color: #C00;
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem 0;
    position: relative;
    z-index: 9;
}
.header img {
    margin-left: 1rem;
    margin-right: 1rem;
}
.header h1 {
    display: flex;
}
.header h1:first-child {
    text-align: right;
}
.header h1:last-child {
    text-align: left;
}
h1 {
    font-size: 2.2rem;
    line-height: 1.8rem;
    margin: 0;
    margin-top: 2px;
}
h2 {
    clear: both;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
li em {
    font-style: normal;
    opacity: 0.5;
}
.fl-r {
    float: right;
    margin-left: 1rem;
}
.fl-l {
    float: left;
    margin-right: 1rem;
}
.logo {
    width: 3rem;
    height: 3rem;
    border-radius: 3px;
    margin-right: 1rem;
}
dl {
    display: flex;
    flex-flow: column wrap;
}
dl dt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
}
dl dd {
    margin-left: 4rem;
    margin-bottom: 3rem;
}
img {
    border-radius: 3px;
}
.container {
    max-width: 700px;
    margin-bottom: 3rem;
    padding: 3rem;
    padding-top: 1rem;
    background: #f3f3f6;
    border-radius: .5rem;
    position: relative;
    transform-style: preserve-3d;
    overflow: unset !important;
}
.container:first-child {
    z-index: 99;
}
.container:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform: translateZ(-1px);
    pointer-events: none;
    background-clip: content-box !important;
    padding: 1px;
    filter: blur(12rem);
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 25s ease infinite;   
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    position: relative;
    z-index: 9;
}
.footer img {
    width: 50px;
}

@media screen and (max-width: 700px) {
    body {
        padding: 0;
        margin: 0;
    }
    .container {
        padding: 1rem;
        margin: 0 0 1rem 0;
        border-radius: 0;
    }
    .container:before {
        display: none;
    }
    .header h1 {
        flex-direction: column;
    }
    .header h1:first-child {
        text-align: center;
    }
    .header h1:last-child {
        text-align: center;
    }
    .logo {
        margin-right: 1rem;
    }
    dl dd {
        margin-left: 0;
        margin-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #CCC;
    }
    .fl-r, .fl-l {
        float: none;
        margin: 0;
    }
    .footer img {
        width: 80px;
    }
}