*{
	font-family: 'Poppins', sans-serif;
	margin: 0px;
	padding: 0px;
}

body{
	background-color: #ababab;
}

.card{
	background-color: #FFFFFF;
	border-radius: 10px;
	padding: 20px;
	display: inline-block;
	margin: 0px auto;
	text-align: center;
	box-sizing: border-box;
	font-weight: bolder;

	position: fixed;
	left: 50%;
	top: 80%;
	transform: translate(-50%, -50%);
}

.card .email a{
	text-decoration: none;
	color: #D7172E;
}

.logo img{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -90%);
	max-width: 400px;
	width: 100%;
}


html, body {
  width: 100%;
  height:100%;
}

body {
    background: linear-gradient(-45deg, #3F3F3F, #6B6E70, #D7172E);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}