/* style.css */

/* Background and text color */
body {
    background-color: #1a1a2e; /* Dark background */
    color: #ffffff; /* White text */
    font-family: 'Arial', sans-serif; /* Font style */
}

/* Header styles */
header {
    background-color: #0f3460; /* Darker header */
    padding: 20px;
}

/* Main title styling */
h1 {
    font-size: 2.5em;
    color: #00adb5; /* Accent color */
    text-align: center;
}

/* Review section styles */
.review {
    background-color: #16213e; /* Slightly lighter background for reviews */
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

/* Star rating */
.star-rating {
    color: #ffcc00; /* Gold color for stars */
}

/* Button styling */
button {
    background-color: #00adb5; /* Button color */
    color: #ffffff; /* Button text color */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}
