/* styles.css */

/* Set grey background for the entire page */
body {
    background-color: #2f2f2f;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000; /* Blue background */
    color: #fff; /* White text */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
}

.button:hover {
    background-color: #b30000; /* Darker blue on hover */
}

/* Container styles */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

/* Guestbook entry styles */
.entry {
    background-color: #f9f9f9; /* Light grey background for each message */
    border: 1px solid #000000; /* Grey border around each message */
    padding: 20px; /* Adjust padding to make the message box smaller */
    margin-bottom: 10px;
    border-radius: 5px; /* Rounded corners for each message */
}

.entry img {
    max-width: 100%;
    height: auto;
}


