@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
    margin: 0px;
    padding: 30px;
    font-family: "Nunito";
    overflow: hidden;
    background: #0A5EFB;
}

canvas {
    box-shadow: -3px 2px 9px 6px black;
    cursor: pointer;
    border-radius: 5px;
}

.tools {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 15px;    
}

.tools .color-field {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #002043, 0 0 0 6px #7c92b0;
    align-self: center;
    margin: 0 10px;
}

.tools .button {
    align-self: center;
    width: 100px;
    height: 40px;
    cursor: pointer;
    color: #001b4d;
    font-weight: bold;
    margin: 0 10px;
    text-transform: uppercase;
    border-radius: 34px;
    box-shadow: 0 0 0 5px #002043, 0 0 0 6px #7c92b0;
    border-top: 2px transparent solid;
    border-bottom: 2px transparent solid;
    background-color: #ffbf00;
    border-top-color: #ffe100;
    border-bottom-color: #f88700;
    border-left-color: #ffbf00;
    border-right-color: #ffbf00;
    font-family: "Nunito";
    font-weight: bold;
    font-size: 20px;
}

.color-picker {
    align-self: center;
    margin: 0 10px;
    height: 50px;
}

.pen-range {
    align-self: center;
    margin: 0 10px;   
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0px;
    background-color:rgba(0, 32, 67, 0.2);
    height: 50px;
}

body{
    background-image: url("https://gartic.io/static/images/new/textura.png");
}

.slider {
    -webkit-appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffbf00;
    box-shadow: 0 0 0 2px #002043, 0 0 0 3px #7c92b0;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffbf00;
    box-shadow: 0 0 0 2px #002043, 0 0 0 3px #7c92b0;
    cursor: pointer;
  }

.logo {
    content: url(/scribbleit.png);
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

.text {
    display: table;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social {
    position: absolute;
    right: 15px;
    bottom: 25%;
}