
.body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 90vw;
}


h1 {
    text-align: center;
}


.canvas {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fffffeee;
}

.card {
    background-color: #eee;
    border-radius: 15px;
    margin: 20px;
    padding: 25px;
    opacity: 0.97;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    border-radius: 15px;
}

button {
    margin: 8px;
    min-width: 220px;
}

.delete {
    color: tomato;
}