.light #links {
  background-color: #eeeeee;
}

.dark #links {
  background-color: #575757;
}

#content {
  width: 50vw;
  margin: auto;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  #content {
    width: 70vw;
  }
}

@media (max-width: 600px) {
  #content {
    width: 90vw;
  }
}

#content #links {
  line-height: 150%;
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 3px;
}

#content .title:nth-child(1) {
  margin-bottom: 10px;
}

#content .title:nth-child(2) {
  margin-bottom: 25px;
}

#content .blogpost {
  margin-bottom: 30px;
}

#content .blogpost .date {
  font-size: 0.8em;
  color: #b4b4b4;
}

#content .blogpost .header {
  font-size: 1.2em;
  margin-top: 5px;
  margin-bottom: 10px;
}

#content .blogpost .description {
  margin-bottom: 15px;
}

input,
textarea {
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 3px;
  font-family: "Lexend Deca", sans-serif;
}

input {
  width: 40%;
}

@media (max-width: 600px) {
  input {
    width: 70%;
  }
}

textarea {
  width: 80%;
  resize: none;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  textarea {
    width: 90%;
  }
}

#snackbar {
  position: fixed;
  bottom: -50px;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
  max-height: 50px;
  width: 30vw;
  left: 35vw;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

@media (max-width: 600px) {
  #snackbar {
    left: 0;
    width: 100vw;
    padding: 0;
  }
}

#snackbar #snackbarText {
  line-height: 50px;
  font-size: 0.9rem;
  color: white;
}

#snackbar.error {
  background-color: #d32f2f;
}

#snackbar.success {
  background-color: #388e3c;
}

#snackbar.up {
  bottom: 0px;
}
/*# sourceMappingURL=blog.css.map */