/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

body {
    margin: 0;
    font-family: "Google Sans Code", monospace;
    background-color: #0d2b45;
    color: #ffecd6;
}

p {
    margin: 0;
    color: #ffecd6;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-family: "Google Sans Code", monospace;
    color: #ffecd6;
    background-color: #544e68;
    border: none;
    outline: none;
    border-radius: 2px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    font-family: "Google Sans Code", monospace;
    color: #ffecd6;
    background-color: #544e68;
    border: none;
    outline: none;
    border-radius: 2px;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-family: "Google Sans Code", monospace;
    color: #ffecd6;
    background-color: #544e68;
    border: none;
    outline: none;
    border-radius: 2px;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-family: "Google Sans Code", monospace;
    color: #ffecd6;
    background-color: #544e68;
    border: none;
    outline: none;
    border-radius: 2px;
}

input,
textarea,
button,
select,
input::placeholder,
textarea::placeholder {
    font-family: "Google Sans Code", monospace;
    color: #ffecd6;
    background-color: #544e68;
    border: none;
    outline: none;
    border-radius: 2px;
}

.input:focus {
    background-color: #203c56;
}

.text {
    color: #ffecd6;
}


textarea {
    width: 35vw;
    height: 30vh;
    min-width: 165px;
    resize: none;
    border-radius: 2px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

textarea:focus {
    -webkit-box-shadow: 0 0 0 3px #ffecd6;
            box-shadow: 0 0 0 3px #ffecd6;
}

#color-input {
    width: 15.5vw;
}

.main-container {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    height: 100vh;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
}

.color-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.text {
    margin: 0;
}

.press {
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
    transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
    -o-transition: transform 0.1s ease, background-color 0.2s ease;
    transition: transform 0.1s ease, background-color 0.2s ease;
    transition: transform 0.1s ease, background-color 0.2s ease, -webkit-transform 0.1s ease;
}

.press:hover {
    background-color: #203c56;
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
}

.press:active {
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
    background-color: #2b5276; 
}

*::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #544E68;
}

*::-webkit-scrollbar-track:hover {
  background-color: #544E68;
}

*::-webkit-scrollbar-track:active {
  background-color: #544E68;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #FFECD6;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #FFECD6;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #FFECD6;
}

canvas {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 100%;
  height: 100%;
}.box {
    -webkit-box-shadow: 0 0 10px #cecece;
            box-shadow: 0 0 10px #cecece;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
 }
