/* general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: .95em sans-serif;
  text-decoration: none;
  color: black;
}
header {
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: space-around;
}
main {
  display: flex;
  flex-flow: row wrap;
  padding: 0 1px 0 0;
}
a {
  cursor: pointer;
}
a:hover {
  color: #bababa;
}
p {
  background-color: white;
  padding: 5px;
}
a:hover p{
 background-color: #bababa;
}
figure {
  width: 100%;
}
img {
  width: 100%;
}

td, th {
  text-align: left;
  vertical-align: top;
  padding: 5px 5px 10px 5px;
  background-color: white;
}

#copyright {
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* about */
.about-item {
  flex: 1 50vw;
  max-width: 50%;
  padding: 15px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  background-color: #bababa;
}
.about-item img {
  margin-bottom: -5px;
}
.about-item p {
  margin-bottom: 10px;
}
.about-item table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}
.about-item th {
  width: 15%;
}

/* art */
.art-item {
  flex: 1 100vw;
  max-width: 100%;
  padding: 15px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  background-color: #f0f0f0;
}
.art-item p {
  width: max-content;
}
.art-item img {
  padding: 15% 25%;
}


/* media queries */
@media screen and (max-width: 480px) {
  header {
    justify-content: space-between;
    padding: 5px;
  }

  /* about */
  .about-item{
    flex: 1 100vw;
    max-width: 100%;
  }

  /* art */
  .art-item img {
    padding: 45% 15px;
  }

}
