/* Reset margins and paddings for a consistent look */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set the background color for the body */
body {
  background-color: #185618;
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 15px;
}

/* Center the main content */
main {
  display: block;
  max-width: 800px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.christmas {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-rows: 30px auto 30px;
  width: 300px;
  height: auto;
  background-color: #fff;
  border-radius: 8px;
}
.christmas .top {
  grid-row: 1;
  border-radius: 8px 8px 0px 0px;
}
.christmas .bottom {
  grid-row: 3;
  border-radius: 0px 0px 8px 8px;
}
.christmas .bells {
  padding: 5px;
  background-color: ForestGreen;
  background-size: 100% 5px;
  display: flex;
  justify-content: space-between;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.christmas .bells .ribbon {
  height: 80%;
  transform: rotate(5deg);
  margin-top: 2px;
}
.christmas .bells .bell {
  transform: rotate(-15deg);
}
.christmas .chr-text {
  line-height: 1.3em;
}
.christmas .chr-text .christmas-title {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Style the logo container */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

/* Style the image inside the logo container */
.logo img {
  max-width: 100%;
  height: auto;
}

/* Center text inside the main area */
h1, h2, h3, p {
  text-align: center;
  margin-bottom: 20px;
}

h1, h2, h3 {
  color: #1e1304;
}

h2 {
  margin-bottom: 10px;
}

/* Style the divider */
.divider1 {
  height: 2px;
  background-color: #eaeaea;
  margin: 20px 0;
}

.divider2 {
  height: 2px;
  width: 50%;
  background-color: #eaeaea;
  margin: 20px auto;
}

/* Style the email link */
a {
  color: #185618;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* Add some responsive behavior */
@media (max-width: 768px) {
  main {
    margin: 30px 20px;
    box-shadow: none;
  }
}/*# sourceMappingURL=style.css.map */