body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #4CAF50;
    color: white;
}

.kiraya24 {
    color: #ffeb3b;
}

.funny-line {
    font-size: 1.2em;
    margin-top: 10px;
}

.categories-container,
.hostels-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.category-item,
.hostel-item {
    background-color: white;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.category-item:hover,
.hostel-item:hover {
    transform: translateY(-5px);
}

.category-item img,
.hostel-item img {
    max-width: 100%;
    border-radius: 5px;
}

h1 {
    color: #333;
}

.product-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-images img {
    margin: 5px;
    max-width: 100px;
    border-radius: 5px;
}

.button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}
