body{
    margin: 0px;
    padding: 0px;
    background-image: url('../pictures/hhs.png');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Press Start 2P', cursive;
}

#welcome{
    min-height: auto;
    max-width: 50%;
    background-color: rgba(255, 255, 255, 0.50);
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    transition: 1s ease;
    padding: 40px;
}

button{
    padding: 10px;
    background-color: blue;
    color: white;
    border: none;
    font-size: 16px;
    font-family: 'Press Start 2P', cursive;
    outline: none;
}

button:hover{
    cursor: pointer;
    opacity: 0.8;
}

#pongCanvas{
    background-color: white;
    border: 3px solid blue;
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: 1s ease;
}

#pongCanvas:hover{
    cursor: pointer;
}

#gameOver{
    height: auto;
    max-width: 50%;
    background-color: rgba(255, 255, 255, 0.50);
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    transition: 1s ease;
    padding: 40px;
}