* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: sandybrown;
    font-family: "Futura Font Family";
    font-weight: lighter;
    text-align: right;
    margin-top: 750px;
    padding-right: 10px;
    animation: fade-in 5s;
}

fade-in {
	opacity: 1;
	animation-name: fadein;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 5s;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
    100% {
		opacity: 1;
	}
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100vw;
    min-height: 100vh;
    background-color: #000033;
    background-size: cover;
    background-position: center;
}

.field {
    width: 1000px;
    height: 800px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
 }

.splash {
    max-width: 75vw;
    max-height: auto;
    justify-content: center;
    align-items: center;
    animation: fade-out .0005s ease-out forwards 3s;
    z-index: 2;
    position: absolute;
    opacity: 1;
}

.main {
    box-sizing: border-box;
    width: min(90vw, 1000px);
    aspect-ratio: 5 / 4;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in .0005s ease-in forwards 3s;
    position: absolute;
    opacity: 0;
    z-index: 1;
}