@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
    background: #87CEEB;
    color: #fff;
    display: flex;
    flex-direction: column;
	text-align: center;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    image-rendering: pixelated;
    position: relative;
}

header {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 4rem;
    color: #000;
    text-shadow: 
		-4px -4px 0 #000,
		4px -4px 0 #000,
		-4px 4px 0 #000,
		6px 6px 0 #000;
    display: flex;
    justify-content: center;
}

header p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 2px 2px #000;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.cta button {
    padding: 7px 15px;
    width: 200px;
    border: 2px solid #333;
    background: #aaa;
    color: #fff;
    font-size: 1rem;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 1px 4px 1px 1px #000;
    border-radius: 0;
    text-align: center;
}

.cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 0px #333;
}

footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
}