*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: linear-gradient(transparent, #b0e2ff), url('image/blue.gif');
  background-attachment: fixed;
  font-family: 'gaegu';
  font-size: 16px;
  margin: 5%;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'balsamiq sans';
}


.container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 3;
  flex-basis: 0;
  justify-content: space-between;
  gap: 1rem;
}

.box {
  display: flex;
  gap: 1rem;
}

.boximg {
  align-self: center;
  width: 200px;
}

.content {
  flex-grow: 6;
  flex-basis: 0;
  min-width: 220px;
  height: 220px;
  border: 2px #544b43 solid;
  border-radius: 10px;
  background: #ffffff;
  padding: 1rem;
  overflow: scroll;
  overflow-x: hidden;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.headers {
  font-size: 20px;
  text-align: right;
  font-weight: normal;
  border-bottom: 1px #544b43 solid;
  line-height: 30px;
}

.header {
  color: #ffffff;
  text-shadow: 0 0 3px black;
}
