@keyframes pulse {
    0% {
        transform: scale(0.85);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.85);
    }
}

html, body {
	margin: 0;
	background-color: black;
}
.body {
	display: flex;
	width: 100%;
	height: 100dvh;

	align-items: center;
	justify-content: center;	
	background-color: black;
}
.logo {
	width: 320px;
	height: 320px;

	transform: scale(1);

	@media screen and (min-width: 768px) {
		width: 640px;
	        height: 640px;
	}
}
