body {
  color: white;
  margin: 0;
  height: 95vh;
  position: relative;
  transition: background-color 0.5s;
  background-image: url('../img/AchtergrondTonSemi.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

h2 {
    color: black;
}
.image {
    display: flex;
    flex-direction: row-reverse;
}
.container {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-top: 3%;
  box-sizing: border-box;
}

.header {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;

}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
    position: absolute;
}
.dropbtn {
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: x-large;
    color: white;
}

.dropbtn:visited {
  color: white;
}

.dropbtn:hover {
  color: lightgray;
}
.logo {
  width: 80px;
  height: auto;
}
.artwork-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 55vh;
}

.artwork {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
}

.artwork img {
    max-height: 55vh;
    max-width: 55vh;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.40);
}

.image-container{
    display: flex;
    justify-content: space-around;
}


#plaque-higher, #plaque-lower {
  text-align: left;
  width: 100%;
  padding-left: 65px;
}

#plaque-higher h2, #plaque-lower h2 {
  margin: 0;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: lighter;
  font-stretch: condensed;
}

#plaque-lower h2 {
    color: white;
    font-size: 1em;
}


.nav-button {
    background-color: rgba(85, 85, 85, 0);
    color: white;
    text-shadow: 2px 2px 2px black;
    border: none;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 1.5em;
    margin: 0 10px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sold-indicator {
  display: none;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background-color: rgb(235, 0, 0);
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.45);
  align-self: flex-end;
  margin-right: -30px;
  }


@media (max-width: 769px) {
  .nav-button {
    font-size: 1.2em;
  }

  .logo {
    width: 50px;
  }
}

@media (max-width: 431px) {
    #plaque-higher, #plaque-lower {
        padding-left: 55px;
	align-self: flex-start;
        width: 100%;
    }
    .artwork-container {
        height: 30vh;
    }
  .artwork img {
    max-height: 35vh;
    max-width: 35vh;
  }
}
