header .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logos img {
  height: 80px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .nav-item {
  margin: 20px;
}

header nav .nav-item:first-child {
  margin-left: 0;
}

header nav .nav-item a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

header nav .nav-item a:hover {
  text-decoration: underline;
}

header nav .nav-item input {
  color: white;
  background: none;
  border: 5px solid #ffffff;
  font-family: unset;
  padding: 5px;
  outline: none;
  font-size: unset;
  text-transform: uppercase;
}

.artworks {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.artwork-parent {
  width: 48%;
  margin: 1%;
}

.artwork {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("../assets/paper.jpg");
  background-size: cover;
  padding: 10px;
  border-radius: 3px;
  height: 200px;
}

.artwork .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.artwork .image img {
  width: 100%;
}

.artwork .content .stamp {
  text-align: right;
}

.artwork .content .stamp img {
  width: 50px;
  border: 2px solid black;
}

.artwork .content .text {
  margin: 0 15px;
}

.artwork .content .text span {
  border-bottom: 1px solid black;
  display: block;
  margin: 10px 0;
}

body {
  background-image: url("../assets/background.png");
  background-attachment: fixed;
  background-size: cover;
  color: black;
}

.container {
  max-width: 700px;
  margin: 50px auto;
}

.description {
  background-image: url("../assets/paper.jpg");
  background-size: cover;
}

.description .description-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.description .description-content img {
  width: 60px;
  height: 60px;
}

.description .description-content .text {
  margin-left: 20px;
}

.description .description-content .text p {
  margin: 0;
}
/*# sourceMappingURL=style.css.map */