body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #4CAF50; /* Smoother green background */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #64B5F6, #4CAF50); /* Fancy background gradient */
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF; /* White color for heading */
}

p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #FFFFFF; /* White color for text */
}

a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.buy-now {
    background-color: #4CAF50;
}

.buy-now:hover {
    background-color: #388E3C; /* Darker green on hover */
}

.contact {
    background-color: #03A9F4; /* Blue color for contact button */
    margin-left: 20px;
}

.contact:hover {
    background-color: #0288D1; /* Darker blue on hover */
}

