body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
 
    header {
      position: relative;
      background-color: #333;
      height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
    }

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo img {
  height: 80px;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  padding: 20px;
}

.hotel-capsules {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hotel-capsule {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #f1f1f1;
  margin-bottom: 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
  border-color: #B68B5D;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 100px;
  box-sizing: border-box;
  backface-visibility: hidden;
  
  color: #B68B5D;
}

.front {
  background-color: #333;
  transform: rotateY(0deg);
  z-index: 2;
  border-color: #B68B5D;
}

.back {
  background-color: #f1f1f1;
  transform: rotateY(180deg);
  border-color: #B68B5D;
}

.hotel-capsule:hover .front {
  transform: rotateY(180deg);
  z-index: 1;
}

.hotel-capsule:hover .back {
  transform: rotateY(0deg);
  z-index: 2;
}

h2, h3, p {
  margin: 0;
}
h4 {
  margin: 0;
  text-align:center;
}

ul {
  padding: 0;
  margin-top: 10px;
  list-style: none;
}

li {
  margin-bottom: 5px;
}
.register-button {
      position: fixed;
      top: 20px;
      right: 20px;
      background-color: #FF0000;
      color: #FFFFFF;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 16px;
      text-decoration: none;
       z-index: 9999;
    } 
 .footer {
      background-color: #333;
      color: #fff;
      padding: 20px;
      text-align: left;
      font-size: 14px;
    }

    .footer a {
      color: #fff;
      text-decoration: none;
    }
 @media screen and (max-width: 480px) {
      body {
        font-size: 11px;
      }
      .hotel-capsule {
          height: 300px;
      }
    }