@font-face {
    font-family: 'Trigon Grotesk';
    src: url('TrigonGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background-color: white;
    max-width: 100%;
}
.header {
    width: 100%;
    height: auto; 
    display: block; 
    padding-bottom: 10px;
}
input[type="text"],
input[type="file"],
input[type="color"],
input[type="range"],
button,
label {
    margin-bottom: 1rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
}
input[type="text"],
input[type="file"],
button {
    border: 1px solid black;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    background-color: white;
    box-sizing: border-box;
}
input[type="text"] {
    text-align: center;
}
input[type="file"] {
    cursor: pointer;
}
input[type="color"] {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    width: 50px;
    height: 30px;
    background: none;
    padding: 0;
}
input[type="range"] {
    width: 100%;
    max-width: 300px;
}
button {
    background-color: black;
    color: white;
    cursor: pointer;
}
#canvas {
    display: none;
    margin-top: 1rem;
    border: 1px solid #ccc;
    max-width: 100%;
}
#svgPreview {
    margin-top: 2rem;
    max-width: 100%;
    overflow-x: auto;
}