body {
  background-color: rgb(26, 19, 16);
  color: rgb(194, 155, 118);
  font-family: Inter Tight;
  padding: 100px;
  text-align: center;
}
header {
  background-color: rgb(40, 29, 24);
  view-transition-name: main-header;
  color: rgb(255, 255, 255);
  opacity: 100%;
  text-align: center;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  h1 {
    font-weight: 800;
    font-size: 40px;
  }
  a {
    text-decoration: none;
    opacity: 50%;
    transition: 0.5s;
  }
  a:visited {
    color: white;
  }
  a:hover {
    opacity: 100%;
    transition: 0.5s;
  }
}
.spacer {
  padding: 20px;
}
p {
  margin: 30px;
  font-size: 20px;
  font-weight: 600;
}