body {
    background-image: linear-gradient(35deg, #dcdcdc, beige);
    height: 100vh;
    margin: 0;
    padding-inline: 10px;
    padding-top: 5px;
    font-family: 'Montserrat';
    max-width: 100vw;
    margin-inline: auto;
    box-sizing: border-box;
}

h1 {
    color: #364F6B;
    margin-block: 10px;
}

canvas {
    max-width: 100%;
    box-sizing: border-box;
    border-inline: 2px dashed #364F6B;
}

.bar {
    background: #364F6B;
    padding: 10px;
    display: flex;
    color: white;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px;
    border-radius: 0 0 3px 3px;
    margin-top: -3px;
    border-top: white solid 1px;
}

#saveFile {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #364F6B;
    color: white;
    padding: 10px;
    outline: 0;
    font-size: 1rem;
    border: #364F6B 1px solid;
    border-radius: 10px;
    font-weight: 900;
    font-family: 'Montserrat';
    text-transform: uppercase;
    cursor: pointer;
}

#addText {
    background: beige;
    color: #364F6B;
    padding: 10px;
    outline: 0;
    font-size: 14px;
    border: #364F6B 1px solid;
    border-radius: 10px;
    font-weight: 900;
    font-family: 'Montserrat';
    text-transform: uppercase;
    cursor: pointer;
}

#topBar {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    max-height: 30px;
    margin-bottom: -2px;
    background: #364F6B;
    padding: 10px;
    z-index: 50;
    position: relative;
    top: 10px;
    border-radius: 10px 10px 0 0;
}

#title {
    display: flex;
    margin: 0;
    color: white;
    outline: 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 900;
    cursor: text;
}

.btns {
    display: flex;
    gap: 10px;
    position: relative;
    top: 5px;
}

#clearBtn {
    bottom: 3px;
    position: relative;
    width: 30px;
    cursor: pointer;
}

.color {
    width: 0;
    height: 0;
    padding: 0;
    opacity: 0;
}

.colorLabel {
    position: relative;
    right: 0;
    text-align: left;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 100%;
    border: 2px dashed white;
}

.colorLabel::before {
    display: none;
}

.colorLabel:hover::before {
    content: 'Bg color';
    font-style: italic;
    color: #fff;
    padding: 2px;
    padding-bottom: 4px;
    background: #364F6B;
    font-size: 8px;
    position: relative;
    display: block;
    min-width: 30px;
    bottom: 34px;
    border-radius: 5px;
    right: 8px;
}

#valueText::placeholder {
    font-family: 'Montserrat';
    font-style: oblique;
    color: white;
}

#valueText {
    color: white;
    font-family: 'Montserrat';
    background: none;
    border: 0;
    border-bottom: 2px white dashed;
    height: 30px;
    padding: 0;
    outline: 0;
}

/* TODO: Colocar las medias queries 
para que el body tenga un tamaño menor
mientras más grande sea */