body {
    font-family: 'Cairo', sans-serif;
    background-color: #f2b356;
}
.header img {
    width: 100%;
    height: auto;
}

.scratchpad{
    width: 100%;
    height: 445px;
    border: solid 10px #FFFFFF;
    margin:0 auto;
}
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-select {
    padding: .5rem 1rem;
}

.header .language {
    color: white;
    background: rgb(255 255 255);
    text-align: center;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header .language a {
    font-size: 18px;
    text-decoration: none;
    color: #FFF;
    background: #f2b356;
    border-radius: 2px;
    padding: 3px 8px;
}

.header .language a:hover {
    color: #f8ebc9;
}

.form-section {
    background-color: #f2b356;
    color: #FFF;
}

#draw-form {
    border-radius: 25px;
    background-color: #f8ebc9;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#draw-form input,#draw-form select {
    border: 2px solid #f2b356;
    background-color: #f2b356;
    color: #FFF;
    font-size: 18px;
    border-radius: 20px 10px;
    font-weight:700;
}

#draw-form input::placeholder {
    color: #FFF;
    font-weight: bold;
}

#draw-form input:focus,#draw-form select:focus {
    box-shadow: unset;
}

