body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('images/Flexvolt-adavantage-circular-saw-darker.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 20); /* Semi-transparent black overlay */
}

.message {
    position: relative;
    z-index: 1; /* Ensure message appears above the overlay */
    color: #fff; /* White text */
    padding: 20px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

/* Styles for the home page link */
.home-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcc00; /* Yellow button */
    color: #000; /* Black text for readability */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.home-link:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    color: #000;
}