* {
  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: black;
  color: white;
}

p, ul {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  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: white;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
  color: yellow;
}

.information {
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 4em;
  max-width: 50%;
}

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;
  background-color: white;
  color: black;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: fit-content;
  margin: auto;
}

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

  /* mobile settings */
  @media (max-device-width : 768px) {
  .information {
    margin: 0 auto;
    padding-top: 2em;
    padding-bottom: 4em;
    max-width: 90%;
  }
}