body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #D5DADB;
}

#clouds-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: breathe 10s ease-in-out infinite;
    transition: background 10s ease-in-out;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.logo{
	background: no-repeat url("../logo.png");
	width: 429px;
	height: 148px;
}

.container {
	display:flex;
	align-items:center;
	justify-content:center;
}

