/* General Styles */
html{
  overflow-x: hidden;
}
body {
  font-family: "Roboto Serif", serif;
  background-color: #c955ae;
  text-align: left;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.28px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Mobile Styles (Default) */
.mobile {
  width: 100% !important;
  display: block;
  opacity: 0.5;
}
.desktop {
  width: 100% !important;
  display: none;
  opacity: 0.5;
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1328px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

/* Carousel */
.carousel {
  width: 100%;
  overflow: hidden;
}


/* Buttons */
.button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  background: #f6c15e;
  color: #7b4f01;
  font-weight: 500;
  transition: all 0.3s;
  margin-left: 50%;
  transform: translate(-50%);
  color: white;
  width: 70%;
}
.button:hover {
  background: #7b4f01;
  color: #fff;
}
