* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  background-color: white;
  color: black;
}

p, ul {
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: none;
}

.name {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 13px;
  color: black;
}

.name a {
  color: black;
  text-decoration: none;
}

.name a:hover {
  color: black;
  text-decoration: none;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.colophon {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  grid-template-rows: auto;
  margin: 0 12% 0 12%;
  padding-top: 2em;
  padding-bottom: 4em;
  text-align: left;
  gap: 10%;
}

.contact {
 /* color: black;
 background-color: lightgrey; */
 border: solid 1px black;
 text-align: center;
 width: fit-content;
 padding: 0.6em 3em 0.6em 3em;
}

img {
	-webkit-user-select: none; /* Safari, iOS, and Android */
     -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/* img {
  max-width: 98vw;
} */
  
  .carousel-cell {
    height: 100vh;
  }

  /* .carousel.is-fullscreen .carousel-cell {
    height: 100%;
  } */

  .carousel-cell-image {
    max-height: 100%;
  }

  .carousel--left {
    cursor: w-resize;
  }

  .carousel--right {
    cursor: e-resize;
  }

  ul:before{
    content:attr(aria-label);
}

/* sign-up form for newsletter */

.typearea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  /* background-color: whitesmoke; */
  /* border: 3px dotted white; */
  color: white;
  padding: 2em;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: -1em;
}

.typefacecatalogue {
  font-size: 5em;
}

.form-text {
  height: fit-content;
  min-width: 20vw;
}

.button {
  /* width: 100vw; */
  /* padding-top: 10px; */
  margin-top: 5px;
  margin-bottom: 2em;
}

input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: 0.2px;
  background-color: inherit;
}

input[type="text"], input[type="email"] {
  padding: 10px;
  text-align: center;
  /* border: 1px solid #ddd; */
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0px;
  background-color: black;
  margin-bottom: 10px;
  color: red;
}

input[type="submit"] {
  /* padding: 5px 10px; */
  padding: 0.5em 1em;
  background-color: white;
  color: black;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  width: fit-content;
  margin: auto;
}

input[type="submit"]:hover {
  background-color: yellow;
  color: red;
}

/* .shop-area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: white;
  border: 58px dotted black;
  padding: 3em;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
} */

.shop-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  /* padding: 3em; */
  background: linear-gradient(to bottom, #ffffff, darkgreen);
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 1px;
  padding: 0 0 8em 0px;
}

.shop-image {
  width: 20em;
  border: 58px dotted whitesmoke;
  /* border: 44px dashed whitesmoke; */
  margin: 0 0 1em 0;
}

button {
  margin-top: 5px;
  margin-bottom: 2em;
  padding: 1em 2em;
  background-color: white;
  color: black;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  width: fit-content;
  margin: auto;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
}

  /* mobile settings */
  @media (max-device-width : 768px) {
  .colophon {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    grid-template-rows: auto;
    margin: 0 2% 0 2%;
    padding-top: 2em;
    padding-bottom: 4em;
    text-align: left;
    gap: 4%;
  }
}