* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "PressStart";
    src: url('./static/fonts/PressStart2P-Regular.ttf');
}

@font-face {
    font-family: 'SpecialElite';
    src: url('./static/fonts/SpecialElite-Regular.ttf');
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#message {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
}

#message > h2 {
    color: #fff;
    font-family: 'PressStart';
}

#message > #img-container > img {
    width: 250px;
    display: none;
    margin: 20px 0;
}

#message > p {
    color: #fff;
    font-family: 'SpecialElite';
    font-size: 24px;
    text-align: center;
    width: 100%;
}

#message > #social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

#message > #social-links > a {
    color: #fff;
    font-family: 'SpecialElite';
    transition: 1s;
}

#message > #social-links > a:hover {
    color: red;
    scale: 1.05;
}

canvas {
	width: 100%;
	height: 100%;
	display: block;
    -webkit-user-select: none;
    user-select: none;
}

@media screen and (max-width: 650px) {
    #message > h2 {
        font-size: 18px;
    }

    #message > #img-container > img {
        width: 200px;
    }

    #message > p,a {
        font-size: 14px;
    }
}