html, body{
  margin: 0;
  padding: 0;
}

body {
  background: #B1AF86;
  display: grid;
}

.titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: #604632;
  height: 50px;
}
.title {
  font-size: 1.5rem;
}

.menubutton {
  background: none;
  font-size: 2rem;
  padding: 0 3px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

}

.content img {
  aspect-ratio: 1/1;
  width: 100%;
}

.content div {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.content1 {
  background: white;
  width: 40%;
  max-height: 50%;
}