﻿* {
    padding: 0;
    margin: 0;
}
h1 {
    text-align: center;
    color: black;
}
body.Fiverr {
    background: linear-gradient(to bottom, #00ff90, #fffff1);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 18px;
    line-height: 1.6;
}

ul {
    list-style: none;
    background: #808080;
}

    ul li {
        display: inline-block;
        position: relative;
    }

        ul li a {
            display: block;
            padding: 20px 25px;
            color: white;
            text-decoration: none;
            text-align: center;
            font-size: 20px;
        }

        ul li ul.DropDowns li {
            display: block;
        }

        ul li ul.DropDowns {
            width: 100%;
            background: #808080;
            position: absolute;
            z-index: 999;
            display: none;
        }

        ul li a:hover {
            background: #333;
        }

        ul li:hover ul.DropDowns {
            display: block;
        }
p {
    color: black;
}

.Container1 {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap; 
}


.text-wrapper1,.text-wrapper2 {
    max-width: 500px;
    color: black;
    text-align: left;
}

.download-button {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    color: white;
    background-color: #00b36b;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 1px 1px 6px #888;
    transition: background-color 0.3s;
   position:relative;
   text-align:left;
}

    .download-button:hover {
        background-color: #00995c;
    }
.download-section {
    max-width: 500px;
}

.download-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 40px;
    flex-wrap: wrap;
}
