* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}
body {
  background-color: #f5f8ff;
}
.container {
  background-color: #ffffff;
  width: 60%;
  min-width: 450px;
  position: relative;
  margin: 50px auto;
  padding: 50px 20px;
  border-radius: 7px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}
input[type='file'] {
  display: none;
}
label {
  display: block;
  position: relative;
  background-color: #ac60a0;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  width: 300px;
  padding: 18px 0;
  margin: auto;
  border-radius: 5px;
  cursor: pointer;
}
.container p {
  text-align: center;
  margin: 20px 0 30px 0;
}
#images {
  width: 90%;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}
figure {
  width: 45%;
}
img {
  width: 100%;
}
figcaption {
  text-align: center;
  font-size: 2.4vmin;
  margin-top: 0.5vmin;
}

.navigation-btn {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.btn {
  background: #ac60a0;
  color: white;
  padding: 6px 18px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.btn:active {
  transform: scale(0.98);
}

.btn:hover {
  background: #c3739f;
}
