body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: rgb(0, 10, 20);
	color: white;
    display: flex;
    height: 100vh;
	padding: 0px;
	margin: 0px;
}

#content {
    margin: auto;
    max-width: 600px;
    font-size: 18px;
    line-height: 28px;
    z-index: 999;
}

#content a {
    color: rgb(0, 180, 255);
}

#barrier {
    animation: barrier_remove 850ms cubic-bezier(0.1, 0.2, 0.1, 0.3) 160ms forwards;
    background-color: rgb(0, 10, 20);
    position: fixed;
    height: 100%;
    width: 30%;
    z-index: 9;
    left: 15px;
    top: 0;
}

#flowers {
    aspect-ratio: 13 / 30;
    position: relative;
    margin-right: -9%;
    height: 100vh;
    left: 15px;
    top: 0;
}

#flower_1, #flower_2 {
    position: relative;
    z-index: 99;
}

#flower_1 > * {
    rotate: 1deg;
}

#flower_2 > * {
    rotate: -1deg;
}

#flower_1 > *, #flower_2 > * {
    transition: opacity 150ms;
    transition: rotate 180ms;
    opacity: 0;
}

@keyframes barrier_remove {
    0% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@media only screen and (max-width: 915px) {
    #barrier, #flowers {
        display: none;
    }

    #content {
        margin: auto 20px;
    }
}
