* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url('/img/background.gif');
  background-color: #f0e7ca;
}

.main-box {
  width: 800px;
  margin: 50px auto;
}

.upper-title {
  background-color: #c0cea6;
}

.navigation-bar {
  background: linear-gradient(
    180deg,
    rgba(229, 217, 167, 1) 0%,
    rgba(220, 192, 127, 1) 50%,
    rgba(229, 217, 167, 1) 100%
  );
  height: 30px;
  display: flex;
  overflow: hidden;
  padding: 0 30px;
  align-items: center;
  justify-content: space-around;
}

.navigation-bar a {
  text-decoration: none;
  color: white;
}

.navigation-bar > a {
  text-transform: uppercase;
}

.navigation-bar > a:hover {
  color: rgb(85, 84, 84);
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  text-transform: uppercase;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
  color: rgb(85, 84, 84);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: #e7ddb1;
  min-width: 160px;
  z-index: 3;
  transition: max-height 0.7s ease-out;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #cccc99;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  max-height: 500px;
  transition: max-height 1s ease-in;
}

.main-body {
  background-color: #f0f0f0;
  padding: 1px 0;
}

.slides {
  margin: 60px auto 40px auto;
  width: 680px;
  position: relative;
  height: 415px;
  overflow: hidden;
}

.slides img {
  position: absolute;
  transition: opacity 1s;
  opacity: 0;
}

.slides img:first-child {
  z-index: 2;
  opacity: 1;
}

.slides img:last-child {
  z-index: 1;
  opacity: 1;
}

.slideshow-img {
  width: 680px;
  height: 415px;
  /* margin: 100px 60px 40px 60px; */
}

.fabric-sample-link {
  margin: 0 325px 10px 325px;
}

.enter-link-div {
  text-align: center;
  width: 100px;
  height: 55px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 10px auto 30px auto;
}

.enter-link-div a {
  color: rgb(97, 97, 97);
}

.enter-link-div a:hover {
  text-decoration: none;
}

.links-bar {
  background-color: #e2e6da;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.links-bar a {
  margin-right: 20px;
}
