@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap");

body {
  max-width: 503px;
  margin: auto;
  background-color: rgb(31, 31, 31);
  color: white;
  font-size: 20px;
  font-family: "Noto Sans SC", sans-serif;
}

.themechangebtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../media/sun.svg");
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  border: 1px transparent;
}

.light-mode-body {
  background-color: white;
  color: rgb(31, 31, 31);
}

.button {
  background-color: white;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  color: black;
  border: 3px solid #f7f764;
}

.button1:hover {
  background-color: #f7f764;
  color: white;
}

.maintitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Qicksand", sans-serif;
  font-size: 40px;
}

.title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Qicksand", sans-serif;
  color: #ddd;
  font-size: 30px;
}

.line {
  border-bottom: 2px solid;
  border-image: linear-gradient(
      90deg,
      transparent,
      #f7f764,
      #f7f764,
      transparent
    )
    1;
}

.codeblock {
  background-color: #f0f0f0;
  border-radius: 3%;
  font-size: 12px;
}

.links {
  color: rgb(119, 119, 240);
  text-decoration: none;
}

.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(46, 42, 42);
  color: white;
  text-align: center;
  font-size: 10px;
}
