body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-bar {
    display: flex;
    justify-content: end;
    margin:20px;
}

.canvas-container {
    display: flex;
    justify-content: center;
    max-width: 90%;
    width: 1024px;
    background-color: rgb(88, 42, 28);
    overflow: hidden;
}

canvas {
    max-width: 100%;
    height: auto;
}

.cover {
    place-items: center;
    width: 1000px;
    max-width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
}

.cover img {
    height: 100%;
    object-fit: cover;
}

.cover div {
    width:80%;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .canvas-container {
        flex-direction: column; 
    }
    canvas {
        max-width: 100%; 
        height: auto; 
    }
    .top-bar {
        display: none; 
    }
}