body
{
    background-color: white;
    overflow: hidden;
}

#container
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    /*background-image: url('https://media.giphy.com/media/1gQvRFUyMudYVnz9VJ/giphy.gif');
    background-repeat:no-repeat;
    background-position: center center;
    background-size: cover;*/
}

#title
{
    position: absolute;
    margin-top: 2%;
    margin-left: 2%;
    font-family: "dejavu sans mono";
    font-size: 50px;
    color: black;
}

#about
{
    position: absolute;
    margin-top: 6%;
    margin-left: 2.5%;
    font-family: "digital-clock";
    font-size: 25px;
    border: none;
    background-color: transparent;
    color: black;
}

#startButton
{
    position: absolute;
    width: 24%;
    height: 12%;
    margin-top: 32.5%;
    margin-left: 37%;
    border: none;
    background-color: transparent;
    font-family: "dejavu sans mono";
    font-weight: bold;
    font-size: 50px;
    color: black;

    box-shadow: 0px 0px 0px 2px black;
    transition: box-shadow 0.2s linear;
    
}
#startButton:hover
{ 
    box-shadow: 0px 0px 0px 8px black; 
}

#aCanvas
{
    position: absolute;
    margin:none;
    width:100%;
    height:100%;
    background: white;
}

@font-face
{
    font-family:'digital-clock';
    src: url('../fonts/digital-7.regular.ttf');
}

@font-face
{
    font-family:'atari-font';
    src: url('../fonts/press-start-2p.regular.ttf');
}