﻿body {
    background: #0AAD8F;
    background: url("../image/bg.jpg");
    background-size: 1371px 687px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
	overflow:hidden;
    
}

canvas {
    border-radius: 53px;
    border: 10px solid brown;
    margin-top: 46px;
}

p {
    max-width: 700px;
    text-align: center;
}

    p.instructions {
        margin-top: 60px;
    }

    p a {
        font-weight: bold;
        text-decoration: none;
        color: purple;
    }

        p a:hover {
            text-decoration: underline;
            color: #4d004d;
        }

.loading-screen {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: #ffcc99;
    min-width: 860px;
    min-height: 390px;
    color: black;
    position: absolute;
    top: 64%;
    left: 50%;
    font-size: 2rem;
    transform: translate(-50%, -70%);
    display: flex;
    justify-content: center;
    align-items: center;
    align-text: center;
	border-radius: 53px;
}

    .loading-screen p {
        -webkit-animation: pulse 1s linear 2s infinite alternate;
        animation: pulse 1s linear 2s infinite alternate;
    }

.see-code {
    background: black;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

    .see-code:hover {
        background: black;
    }

@-webkit-keyframes pulse {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1000px) {
    canvas {
        margin-top: -84px;
		border:none;
		overflow:hidden;
    }

    .loading-screen {
        margin-top: 20px;
        min-height: 370px;
    }
}