body {
	background: linear-gradient(-45deg, #cda7eb, #696caa, #ff7194, #d01588);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
    
}

.umakunaritai {
    background-image: url("umakunaritai.png");
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.1;
    background-size: 100% auto;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.moon {
    position: absolute;
    left: 10%;
    top: 10%;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: linear-gradient(-70deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 0;
}

.border {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
}

.front {
    font-family: "Signika Negative", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    position: absolute; 
    max-width: 600px;
    text-indent: 30px;
}

.background {
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 200px;
    opacity: 0.1;
    position: absolute;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
