body {
	font-family: "Lato", sans-serif;
	background-image: url(../img/background.webp);
	background-size: cover;
    background-position: top;
	background-attachment: fixed;
	margin: 0;
}

.outer {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
  
.middle {
	display: table-cell;
	vertical-align: middle;
}
  
.inner {
	color: white;
    backdrop-filter: blur(24px);
    background-color: #5e5e5e4a;
	border-radius: 31px;

	padding: 21px 20px;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	max-width: 400px;
}

.text {
	text-align: center;
}

img {
	display: block;
    margin: auto;
}

@media only screen and (max-width: 430px) {
	.inner {
	  margin: 15px;
	}
}