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

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#buttons {
    margin-top: 15px;
}

#buttons > button {
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    border-color: burlywood;
    background-color: rgb(169, 145, 100);
    color: white;
}

#buttons > button:hover {
    background-color: rgb(199, 159, 84);
    color: black;
}

header {
    display: flex;
    justify-content: center;
}

#canva-box {
    display: flex;
    width: 550px;
    height: 550px;
    flex-wrap: wrap;
    outline: 1px solid black;
}