<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
}
body {
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    background-size: cover;
}
#labirinto1{
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    border: 10px groove hsl(0, 2%, 24%);
    width: 800px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    background-color: rgb(19, 90, 153);
    overflow: hidden;
    display: none;
}
#pronto {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    position: absolute;
    display: none;
}
#gameover {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    position: absolute;
    display: none;
}
#ganhou {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    position: absolute;
    display: none;
}
#info {
    width: 800px;
    height: 600px;
    padding: 7px 0 0 20px;
    position: absolute;
    font-size: 1.3em;
    color: #FFF;
    display: none;
}

/* Lista de jogos */

#lista{
    padding: 30px;
    min-height: 528px;
    min-width: 1000px;
    border-radius: 20px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: 10px 2px 20px gray;
}
#lista legend{
    color: white;
    font-family: cursive;
    font-size: 20px;
}

#foto1{
    width: 200px;
    border-radius: 20px;
}
#foto1:hover{
    box-shadow: 2px 2px 5px rgb(63, 63, 63);
}

#icones{
    color: white;
    text-align: center;
    max-width: 250px;
    font-family: cursive, serif;
}

/* FOOTER */

footer{
    color: white;
    text-align: right;
    padding: 5px;
    font-family: serif;
}
</pre></body></html>