/* Stylesheet */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.fancy {
  font-family: 'Zen Dots', sans-serif;
}

html,
body {
  background: #fefefe;
  color: #010101;
  font-size: 1rem;
}

a {
  color: #010101;
  text-decoration: underline;
}

a,
a:hover {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none !Important;
}

div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Zen Dots', sans-serif;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1rem;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.333rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

ul,
ol {
  margin-left: 2rem;
}

ul li, ol li {
  font-size: 1.25rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.666rem;
  font-family: sans-serif;
}

/* App Theme Styles */

#app {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  min-height: calc(100vh - 2rem);
}

.page div, #blog div {
  animation: zoomIn 0.5s ease-in-out;
}

input,
button,
select,
textarea,
button,
.button,
option {
  background: #fefefe;
  color: #010101;
  margin: 0.5rem auto;
  padding: 0.5rem;
  min-height: 3rem;
  border: 2px solid #000;
  box-shadow: 1px 1px 2px #000;
  font-size: 1.333rem;
  line-height: 2rem;
  width: 100%;
}

textarea {
  width: calc(100%);
  min-height: 50vh;
}

button,
.button {
  box-shadow: 1px 1px 1px #000;
  color: #fefefe;
  text-shadow: 1px 1px 1px #000;
  background: #010101;
  border-radius: 2rem;
  font-family: 'Zen Dots', sans-serif;
}

button:hover,
.button:hover {
  background: #f44336;
}

a.button {
  text-decoration: none;
}
.hidden {
  display: none !important;
}



/* Media Queries */

@media screen and (min-width: 560px) {

  input,
  select,
  button,
  .button,
  option {
    width: calc(50% - 2rem);
    margin: 0.5rem;
  }

  textarea {
    width: calc(100% - 1rem);
  }

}





  #editor, #app {
    max-width: 1100px;
    width: 98%;
    margin: 0 auto;
  }
  #login, #logout {
    display: flex;
  }
  div {
    justify-content: center;
  }
  #info {
    text-align: center;
    max-width: 98%;
  }
  .hidden {
    display: none;
  }
  * {
    animation: none !important;
  }
