*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#canvas1{
    border: 2px solid #111;
    box-shadow: 0 4px 12px 1px #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 50em);
    max-height: 100%;
    font-family: 'Creepster', sans-serif;
}
img{
    display: none;
}

#fullScreenButton{
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 2px;
    width: 15em;
    border-radius: 8px;
    outline: none;
    border: 1px solid #83cdce;
    background: rgba(22, 236, 43, 0.75);
    color: rgb(255, 253, 253);
    font-family: cursive;
    font-size: 0.9rem;
    
}

body{
    background-color: #333;
}