*:not(pre) {
  margin: 0;
  padding: 0;
  font-family: helvetica-bold;
  font-size: smaller; 
}

body {
  background-color: beige;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
.main-content {
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Navigation Bar  */
.bar-ul {
  float: left;
  list-style-type: none;
  margin-top: 150px;
  margin-left: 50px;
  position: fixed;
}

.bar-ul li {
  display: table;
}

.bar-ul li a {
  text-decoration: none;
  color: white;
  padding: 2px 10px;
  transition: 0.45s ease;
}

.bar-ul li a:hover {
  color: grey;
}
#menu {
  position: fixed !important;
  text-decoration: none;
  color: black;
  padding: 2px 10px;
  transition: 0.45s ease;
  display: table;
  float: left;
  list-style-type: none;
  margin-top: 150px;
  margin-left: 50px;
  position: fixed;
}
/* logo center */

.logo img {
  margin: 20px auto;
  width: 400px;
  height: auto;
  display: block;
}

/* dropdown list*/

.container {
  width: 200px;
  position: relative;
}
.click {
  background-color: none;
}
.click:hover {
  background-color: none;
}
.click,
.links {
  font-family: helvetica-bold;
  border: none;
  outline: none;
  width: 200px;
  color: #fff;
  transition: 0.2s;
}
.list {
  margin-left: 20px;
  position: absolute;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.2s;
}
.newlist {
  transform: scaleY(1);
}
.links {
  background-color: none;
}
.links:hover {
  background-color: none;
  transform: scale(1);
}

/* front page image*/
#frontimage {
  margin-top: -150px;
  position: relative;
  float: none;
  z-index: -1;
}

#frontimage {
 display: flex;
 align-items: center;
}

.heading {
  position: relative;
  left: px;
}

/* ascii title */
.ascii-title {
  font-family: monospace;
  white-space: pre;
  position: relative;
  margin-bottom: 130px;
  height: 170px;
}
.ascii-title pre {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* This is the main body text*/
.body-container {
  width: 900px;
  height: auto;
  background: beige;
  margin: 20px;
  position: relative;
  top: 200px;
  left: 250px;
  text-align: left;
}
.body-text {
  white-space: pre;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}
/* Image grid for collections and ready to wear */
.collection-images {
  position: relative;
  padding: 10px;
  margin-left: 270px;
  margin-bottom: 50px;
}

.collection-images img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.photoDesc {
  font-size: small;
  position: relative;
  margin-top: 10px;
  display: inline-block;
}

/* Image Transition */
.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  }

.transition-image {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: opacity .5s ease;
}

.mt-6 grid grid-cols-1 gap-y-10 gap-x-6 sm:grid-cols-2 lg:grid-cols-4 xl:gap-x-8{
  pointer-events: none;
}


.transition-image:hover {
  opacity: 1;
}

/* this is the footer */
.footer-container {
  background-color: beige;
  padding-bottom: 2rem 0 4em 0;
  position: relative;
  top: 250px;
  margin-top: 50px;
}

.footer {
  width: 80;
  height: 80px;
  color: black;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
  top: 25px;
  left: 10px;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  margin-right: 40em;
}

.footer-heading a {
  color: black;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: smaller;
}

/* Slideshow */
.carouselExampleDark {
  width: 300px;
  

}

/*  Responsive Grid Layout */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}
/* For mobile phones: */
[class*="col-"] {
  width: 100%;
  grid-column: span 12;
}
@media only screen and (min-width: 768px) {
  /* For tablets: */
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .col-md-10 {
    grid-column: span 10;
  }
  .col-md-11 {
    grid-column: span 11;
  }
  .col-md-12 {
    grid-column: span 12;
  }
}
@media only screen and (min-width: 992px) {
  /* For desktop: */
  .col-1 {
    grid-column: span 1;
  }
  .col-2 {
    grid-column: span 2;
  }
  .col-3 {
    grid-column: span 3;
  }
  .col-4 {
    grid-column: span 4;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-7 {
    grid-column: span 7;
  }
  .col-8 {
    grid-column: span 8;
  }
  .col-9 {
    grid-column: span 9;
  }
  .col-10 {
    grid-column: span 10;
  }
  .col-11 {
    grid-column: span 11;
  }
  .col-12 {
    grid-column: span 12;
  }
}
