/* Reset some default browser styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
	overflow: hidden;
}

/* Add the static background image */
body {
    background-color: black;
	background-image: url('splashback-smol.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.logo {
    position: absolute;
	max-width: 100%;
    height: auto;
	opacity: 0; /* Start with the logo being transparent */
    animation: fadeInScaleRotate 4s forwards 1s; /* Animation to fade in the logo */
}
.logospiral {
    position: absolute;
	max-width: 100%;
    height: auto;
	opacity: 0; /* Start with the logo being transparent */
    animation: fadeInScaleRotateC 3s forwards; /* Animation to fade in the logo */
}


/* Keyframes for fade-in, scale, and rotate animation */
@keyframes fadeInScaleRotate {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(1080deg);
    }
}
@keyframes fadeInScaleRotateC {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(-1080deg);
    }
}