body {
  color: ##fffff4;
    background-image: url('bg.jpg');
    background-size: cover
    background-position: center center;
}
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #ffdefe;
}


header {
  text-align: center;
  padding: 20px 0;
  background-color: #ffdefe;
}

.logo {
  font-size: 24px;
}

.container {
  display: flex;
  padding-left: 20px; 
  padding-right: 20px; 
  gap: 20px; 
}

.left-column,
.right-column {
  flex: 1; 
}

.left-column {
  padding-right: 10px;
}

.right-column {
  padding-left: 10px;
}

.box {
  background-color: #ffdefe;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px dashed #2e2e2e; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.body-content {
  flex: 2; 
  padding: 25px;
  background-color: #ffdefe; 
  border: 2px dashed #2e2e2e; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

footer {
  background-color: ##ffdefe;
  padding: 20px;
  text-align: center;
}

.fun-buttons {
  margin-bottom: 10px;
}

.fun-button {
  background-color: #ffdefe;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}

.fun-button:hover {
  background-color: #ffdefe;
}
.copyright {
  font-size: 14px;
}


.guest-book-image {
  display: block;      
  margin: 0 auto;      
