@font-face {
    font-family: 'Retro Gaming';
    src: url('RetroGaming.woff2') format('woff2'),
        url('RetroGaming.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
    background-color: #000000;
    color: #ffffff;
}

body::after {
    content: "";
    display: block;
    min-height: 100%;
    min-width: 100%;
    background-image: url(screenshot.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(65%);
    z-index: 0;
}

section {
    z-index: 1000;
    position: absolute;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section p {
    width: 30%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6px;
    position: absolute;
    bottom: 1em;
    text-align: center;
}

#title {
    font-family: 'Retro Gaming'; font-weight: normal; font-style: normal;
    font-size: 120px;
    padding: 0 0.5em 0.5em;
}

.btn {
    background-color: DodgerBlue;
    font-family: 'Retro Gaming'; font-weight: normal; font-style: normal;
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    height: 100%;
	min-width: 16vw;
}

.btn:hover {
    background-color: RoyalBlue;
	box-shadow: 0 0.25em 0.5em rgba(0, 0, 100, 0.5);
	transition-duration: 0.12s;
}

button:focus {
    outline:0;
}