html {
  font-size: 10px;
}

body {
  background: rgb(48, 47, 47);
  /* display: flex; */

  margin: 0;
  padding-top: 60px;
  background-color: #2c394b;
}

/* #logo {
  height: 25px;
  margin: 10px 20px;
} */
/*************  nav    **/
#header {
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background-color: #082032;
  margin-bottom: 40px;
}

.p {
  color: white;
  font-family: "Rubik Pixels", cursive;
  /* font-family: 'Foldit', cursive; */
  font-weight: 500;
  font-size: 30px;
  padding-left: 1.5rem;
}
/*******************************/

/********* input-wrapper *****/

.input-wrapper {
  width: 80%;
  background-color: #082032;
  padding: 1.6rem;
  margin: 1rem auto 2rem auto;
  border-radius: 10px;
  color: whitesmoke;
}

#uploader {
  cursor: pointer;
}

/*******************************/

.main-aside {
  display: flex;
  flex-direction: column;
}

main {
  flex: 3;
}

aside {
  flex: 1;
  margin-left: 0.5rem;
}

button {
  background-color: #082032;

  /* padding: 1.6rem 0 1.6rem 2rem; */
  padding: 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
  color: rgb(212, 210, 210);
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 0.5rem 0.5rem;
}

button:hover {
  background-color: #ccc;
  color: #082032;
}

.effects {
  display: flex;
  flex-direction: column;
}

.controls {
  display: flex;
  padding-top: 2rem;
}

.controls > button {
  flex: 1;
  background-color: #082032;

  /* border-style: solid; */
}

.control {
  transition: all 0.3s;
  box-shadow: 0px 0px 6px 0px white;
  border: none;
}

.control:hover {
  box-shadow: 0px 0px 15px 0px white;
  transform: translateY(-2px);
  color: #ccc;
}

label {
  font-size: 1.8rem;
  padding-right: 1.6rem;
}

canvas {
  width: 100%;
}

@media (min-width: 700px) {
  .main-aside {
    flex-direction: row;
  }
}
