html {
    cursor: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
body {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    display: inline-block;
    background-image: url("../assets/padrao1.gif");
    background-size: 800px 800px;
    display: flex;
}
main {
    margin: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tit-container {
    align-self: center;
}
.tit {
    width: 600px;
}
.tit:hover {
    filter: invert(100%);
}
.buttons-container {
    margin: 80px;
    justify-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 20px;
    column-gap: 20vw;
}
.button {
    background-repeat: no-repeat;
    border: 0;
    background-size: 100% 100%;
    width: 300px;
    height: auto;
}
.button {
    background-color: #00000000;
}
.button-img {
        width: 100%;
        background-size: 200% 200%;
}
.button-img:hover {
    filter: invert(100%);
}
.gato {
    height: 60vh
    position: absolute;
    z-index: 2;
    left: 50%;
    transform-origin: center;
    transform: translateX(-50%) translatey(-100%);
    top: 100%;
    pointer-events: none;
}