* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: somar;
    src: url(assets/fonts/SomarSans-Regular.ttf);
}

body {
    font-family: somar;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.top-background {
    width: 100%;
}
.text-container {
    width: 100%;
    max-width: 360px;
    margin-top: 20px;
}
.RTL-heading {
    width: 100%;

    direction: rtl;
    text-align: right;
}
.RTL-heading span {
    color: #62c6c6;
}
.RTL-text {
    text-align: right;
    direction: rtl;
}
.st0 {
    fill: none;
    stroke: #606060;
    stroke-width: 2;
    stroke-miterlimit: 10;
}
#coloringApp {
    width: 100%;
    max-width: 360px;
    text-align: center;
    margin-top: 25px;
    position: relative;
}
.silk {
    max-width: 360px;
    position: absolute;
    top: -20px;
}
svg {
    width: 100%;
    height: auto;
    background: white;
    padding-top: 7px;
    padding: 7px 5px 5px 5px;
    box-shadow: 3px 3px 8px 0px #cecece;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.palette {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px;
}

.color {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.color:hover {
    transform: scale(1.1);
}

.color:focus {
    outline: none;
    border: none;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

@media (min-width: 768px) {
    #coloringApp {
        max-width: 600px;
    }

    .color {
        width: 30px;
        height: 30px;
    }

    .palette {
        justify-content: center;
    }
    .top-background {
        width: 55%;
        align-self: flex-start;
        position: absolute;
        top: 0;
    }
}
