body {
  background: url("https://fentdevilish.neocities.org/assets/diary.avif");
  background-size: 200px;
  filter: sepia(0.2);
}

h2 {
  font-size: 24px;
}

.wrap {
  width: 640px;
  margin: 20px;
  margin-bottom: 10px;
  margin-left: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; 
}

.entry1, .entry2 {
  background: url("https://fentdevilish.neocities.org/assets/paper.webp");
  background-size: cover;
  width: 100%;
  height: 400px;
  padding: 20px;
  overflow: auto;
  transform: rotate(-2deg);
  margin: 20px;
}

.entry2 {
  transform: rotate(2deg);
}

summary {
  border-bottom: 1px dotted #b8ba9b;
  border-top: 1px dotted #b8ba9b;
  padding-bottom: 10px;
}

details[open] {
  overflow: auto;
}

.navibox {
  background: #fff;
  border: dotted 1px #b8ba9b;
  color: #484939;
  padding: 5px;
  overflow-y: auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 650px) {
  * {
    font-size: 24px;
  }
  
  .wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  
}