body {
    color: #333; /* Dark text color */
    background-color: #f0f0f0; /* Light background color */
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-image: url(cover-image.jpg);
    background-size: cover;
    color: whitesmoke;
    padding: 100px 0;

    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 50px 0;
}

section {
    padding: 20px 0;
    text-align: center;
}
#features {
    padding: 50px 0;
    text-align: center;
}

.feature {
    margin-bottom: 30px;
}

.feature img {
    width: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #666;
}


/* Animate the 'Try It Now' button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition */
}

.btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* For screens smaller than 768px (e.g., mobile devices) */
@media (max-width: 768px) {
    header {
        padding: 50px 0;
    }
    .container {
        width: 90%; /* Adjust container width for smaller screens */
    }
    .feature {
        display: block; /* Display features in a single column */
    }
    .feature img {
        width: 100%; /* Make feature images full width */
    }
}

/* For screens larger than 768px (e.g., desktops) */
@media (min-width: 769px) {
    header {
        padding: 100px 0;
    }
}
