@font-face {
    font-family: 'CaveatBrush';
    src: url('font/CaveatBrush-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.main-title {
    font-family: 'CaveatBrush';
    font-weight: normal;
}

body {
  background: rgb(215, 197, 146);
    color:rgb(114, 81, 24);
    font-family: 'CaveatBrush', 'Times New Roman', serif;
    margin: 40;
}

.main-title {
  font-size: 12em;
  color:rgb(159, 111, 39);
  text-align: center;
  margin-bottom: 100px;
}

.category {
  font-size: 5em;
  margin-top: 40px;
  margin-bottom: 50px;
  color: rgb(159, 111, 39);
  font-weight: normal;
}

category.music + .grille .item img {
 width: 1200px;
 height: auto;
 object-fit: cover;
 gap: 10px;
}

.category.movie + .grille .item img {
 width: 230px;
 height: auto;
 object-fit: cover;
 gap: 100px;
}

.category.design + .grille .item img {
 width: 235px;
 height: auto;
 object-fit: cover;
 gap: 50px;
}

.category.category.book + .grille .item img {
 width: 230px;
 height: auto;
 object-fit: cover;
 gap: 50px;
}

.item p {
  color: rgb(63, 48, 18);
  font-size: em;
  margin-top: 4px;
  max-width: 1200px;
  white-space: normal;
  word-wrap: break-word;
  margin-left: auto;
  margin-right: auto;
}

.grille {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.item {
  text-align: center;
}

.item img {
  width: 235px;
  height: auto;
  border-radius: 10px;
}

div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

ul {
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 50px;
  list-style: none;
  padding: 0;
}

a {
  color: #a67344;
  text-decoration: none;
}

a:hover {
  color: #6b4f33;
  text-decoration: underline;
}

section {
  background: rgba(242, 232, 212, 0.8);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(100, 80, 60, 0.1);
}

body {
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  background-color: #c5a652;
}

.category-title {
  clear: both;
}

.category-title {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.item img {
  transition: transform 0.3s ease, box-shadow 0.3 ease;
  border-radius: 10px;
}

.item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(57, 40, 5, 0.87);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}