/* Fade-in from top animation */
@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Basic Body Styling */
body {
    background: linear-gradient(90deg, #1e1e1e, #2a2a2a);
    color: white;
    font-family: 'Fira Code', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Styling */
.title {
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(255, 138, 0, 0.5);
    font-weight: bold;
    margin-top: 20px;
    padding: 10px;
    animation: fadeInFromTop 1s ease-out forwards; /* Animation */
}

/* Description Styling */
.description {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
    animation: fadeInFromTop 1s ease-out forwards; /* Animation */
}

/* Button Styling */
button {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    animation: fadeInFromTop 1s ease-out forwards; /* Animation */
}

/* Button Hover Effect */
button:hover {
    transform: scale(1.1); /* Grow slightly on hover */
}

/* Features Section Styling */
.features, .what-is-easy-execute {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    animation: fadeInFromTop 1s ease-out forwards; /* Animation */
}

/* Features Heading Styling */
.features h2, .what-is-easy-execute h2 {
    text-align: center;
    font-size: 1.8rem;
}

/* List Styling */
.features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.features li {
    margin: 5px 0;
}

/* Code Block Styling */
pre {
    background-color: #333;
    color: #f8f8f2;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    overflow: auto;
    word-wrap: break-word;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 50px;
    color: #aaa;
}