button {
  font-weight: 400;
  min-width: 8rem;
  min-height: 3rem;
  cursor: pointer;
  --offset: 10px;
  --border-size: 2px;
  position: relative;
  padding: 1.5em 3em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: #e55743;
  text-transform: uppercase;
  letter-spacing: .25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 0 var(--border-size) currentcolor;
          box-shadow: inset 0 0 0 var(--border-size) currentcolor;
}

button:hover {
  content: "";
  background: whitesmoke;
  opacity: 0.3;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

#more {
  display: none;
}

p {
  color: gray;
  font-weight: bold;
}

.saveBtn {
  display: none;
}

.editBtn {
  display: inline;
}

.darkModeBtn {
  margin-left: 1rem;
  margin-top: 1rem;
  font-size: 10px;
  color: gray;
}

.darkMode {
  background-color: black;
}

.darkMode .text {
  color: white;
}

.darkMode .header__title {
  -webkit-text-stroke-color: none;
}

.header {
  text-align: center;
  font-size: xx-large;
}

.header h2 {
  color: rosybrown;
  -webkit-text-fill-color: rosybrown;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  letter-spacing: 3px;
  font-size: 60px;
}

.header textarea {
  text-align: center;
  font-size: x-large;
  margin-top: 1rem;
}

.header__rubrik textarea {
  min-width: 8rem;
  min-height: 3rem;
}

@media (min-width: 40em) {
  .header__rubrik textarea {
    min-width: 30rem;
    min-height: 3rem;
  }
}

@media (min-width: 64em) {
  .header__rubrik textarea {
    min-width: 60rem;
    min-height: 4rem;
  }
}

.header__text textarea {
  min-width: 8rem;
  min-height: 10rem;
}

@media (min-width: 40em) {
  .header__text textarea {
    min-width: 30rem;
    min-height: 10rem;
  }
}

@media (min-width: 64em) {
  .header__text textarea {
    min-width: 60rem;
    min-height: 10rem;
  }
}

.addPostBtn {
  padding: 2rem;
}

.removeAllPosts {
  margin-top: 1rem;
}

.header__github {
  font-size: 28px;
}

.removeAllPosts {
  margin-top: 1rem;
  font-size: 10px;
  color: gray;
}

.blogPosts {
  padding: 0rem;
  margin-top: 3rem;
  font-size: x-large;
}

.blogPosts__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  padding: 0rem;
}

@media (min-width: 40em) {
  .blogPosts__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    padding-left: 5rem;
  }
}

@media (min-width: 64em) {
  .blogPosts__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    padding-left: 10rem;
    padding-top: 5rem;
    padding-right: 10rem;
  }
}

.blogPosts p {
  color: black;
}

.blogPosts h2 {
  -webkit-text-fill-color: rosybrown;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: gray;
  letter-spacing: 1px;
}
/*# sourceMappingURL=style.css.map */