body {
      background-image: url('../img/cabana1.jpg'); 
    background-size: cover; /* Ensures the image covers the whole background */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center; /* Centers the background image */
    color: #333; /* Darker text for better readability */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures the body takes full viewport height */
    margin: 0;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background for content */
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

.img-fluid {
    max-width: 250px; /* Adjust as needed */
    height: auto;
    border: 5px solid #fff; /* White border around the image */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: white !important; /* Ensure text color is white */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}