* {
    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;
	}
}

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

.field {
    width: 64vw;
    height: 85vh;
    justify-content: center;
    align-items: center;
    background-size: 50vmax;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("PS Splash Screen.gif");
    animation-name: fade-in;
    animation-duration: 1.5s;
    opacity: 1;
}

.splash {
    max-width: 100%;
    max-height: auto;
    justify-content: center;
    align-items: center;
    animation-name: fade-in;
    animation-duration: 1.5s;
    opacity: 1;
}