body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: #f0f0f0;
    margin: 0px;
}

#canvas {
    border: 3px solid black;
    border-radius: 10px;  
}

h1 {
    font-family: "Belleza", sans-serif;
}

#app {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    text-align: center;
    flex-direction: row;
}

.buttons {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
}

button {
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #314a4b;
    color: white;
    transition: background 0.3s;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

button:hover {
    background-color: #577e80;
}

.smooth-on {
    background-color: #729d9f;
}

#image img{
    border-radius: 10px;
}

.preview {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    height: auto;
    display: block;
}

#svgContainer1 {
    position: absolute;
    top: 210px;
    left: 155px; 
    height: 80px;
    width: 80px;
    border-radius: 5px;
}