:root {
    --footer-height: 110px; /* Define the footer height as a CSS variable */
}

a {
    color: #00aced; /* Light blue color */
    font-weight: bold; /* Make the text bold */
    text-decoration: none; /* Remove underline */
    padding: 4px 8px; /* Add some padding around the text */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter background */
    border-radius: 4px; /* Rounded corners */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for hover effect */
}

a:hover {
    color: #ffffff; /* White color on hover */
    background-color: rgba(0, 172, 237, 0.3); /* Blue background on hover */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #3c3c3c;
    color: #ffffff;
    text-align: center;
    padding-bottom: var(--footer-height); ;
}
header {
    background-color: #2d2d2d;
    padding: 20px;
    border-bottom: 2px solid #1a73e8;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
.screenshot {
    margin: 40px auto;
    max-width: 300px;
    max-height: 70%;
    border-radius: 10px;
    border: 2px solid #1a73e8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.content {
    padding: 20px;
}
.button {
    background-color: #1a73e8;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 4px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.feature {
    background-color: #4a4a4a;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    text-align: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
footer {
    background-color: #2d2d2d;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    border-top: 2px solid #1a73e8;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
p {
    margin-bottom: 1em;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
        /* Basic Carousel Styling */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: auto;
            overflow: hidden;
        }

        .carousel-images img {
            width: 100%;
            display: none;
        }

        .carousel-images img.active {
            display: block;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        .carousel-control.prev {
            left: 0;
        }

        .carousel-control.next {
            right: 0;
        }