
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype');
}

@font-face {
    font-family: 'ClashBold';
    src: url('../fonts/Clash_Bold.otf') format('opentype');
}

@font-face {
    font-family: 'ClashRegular';
    src: url('../fonts/Clash_Regular.otf') format('opentype');
}
body {
    font-family: 'ClashRegular', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #1d1d1d;
    height: 100vh;
}
canvas {

    margin-top: 20px;
    background-color: #fff;
    border-radius: 6px;
}

h1 {
    font-family: 'ClashBold', sans-serif;
    color: #fff;
    font-size: 64px;
}

.endzone-label {
    font-family: 'ClashRegular', sans-serif;
    color: lightgray;
    font-size: 32px;
    margin-bottom: 20px;
}

button {
    background-color: #6520B9;
    border-radius: 6px;
    padding: 12px 10px;
    color: #fff;
    font-size: 16px;
    font-family: ClashRegular, sans-serif;
    border: none;
}

.text-input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.color-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .color-input::-webkit-color-swatch {
    border-radius: 6px;
    border: none;
  }
  .color-input::-moz-color-swatch {
    border-radius: 6px;
    border: none;
  }

select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#customFontSizeInputBox {
    display: none;
}

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

.input-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
label {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 16px;
    margin-bottom: 4px;
}
.label-box {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

#download-button {
    margin-top: 10px;
    width: 100%;
    background-color: #20b96c;
}
#download-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}