body {
    background-image: url("background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

main {
    background: linear-gradient(90deg, rgb(145, 116, 179, 0.95) 0%, rgb(29, 23, 13) 100%);
    border-color: rgb(0, 0, 0);
    border-top-color: rgb(224, 224, 224);
    border-left-color: rgb(224, 224, 224);
    border-style: solid;
    border-width: 7px;
    margin-top: 200px;
    width: 70dvw;
    height: 8000px;
    overflow: hidden;
}

main h1 {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 153, 0) 100%);
    color: rgb(0, 0, 0);
    border-color: rgb(255, 0, 0);
    border-style: solid;
    border-width: 7px;
    font-size: 128px;
    text-align: right;
}

main img {
    width: 50%;
    height: 100px;
}

main h2 {
    color: rgb(255, 255, 255);
    text-shadow: 0 10px 42px rgb(255, 255, 255);
    font-size: 64px;
    text-align: center;
    background-color: rgb(214, 201, 201);
    border-radius: 100%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

@keyframes animatedGradient {
    0% { color: rgb(0, 0, 0); }
    50% { color: rgb(255, 0, 0); }
    100% { color: rgb(0, 0, 0); }
}

@keyframes animatedLinearGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

main h3 {
    font-size: 32px;
    text-align: right;
    line-height: 0.5;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(0, 255, 106) 100%);
    background-size: 400%;
    border-color: rgb(255, 0, 0);
    animation: animatedGradient 6s infinite, animatedLinearGradient 2s infinite;
    margin: 20px 240px;
}

main button {
    background: linear-gradient(180deg, #ddffe7 0%, rgb(0, 255, 106) 100%);
    color: rgb(0, 0, 0);
    box-shadow: 0 0 666px 35px rgb(0, 255, 106);
    font-size: 82px;
    width: 100%;
    padding: 150px 100px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.5s;
}

main .testimonionls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 100px;
    width: 500px;
    height: 400px;
    overflow-x: scroll;
}

main .testimonionls .testimonionl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 400px;
    margin-left: 10px;
    background: radial-gradient(circle, rgba(0, 38, 255, 0.8) 0%, rgb(255, 0, 0) 100%);
}

main .testimonionls .testimonionl img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

main .testimonionls .testimonionl .name {
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin-top: 10px;
}

main .testimonionls .testimonionl .review {
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-top: 10px;
}

main .brr {
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    text-align: center;
    animation: neonRainbow 2s infinite;
}

main .pricingwrappa {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 100px;
    width: 100%;
    height: 1000px;
    background-color: red;
}

main .pricingwrappa .pricing {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 400px;
    overflow: hidden;
    margin-left: 10px;
    background: linear-gradient(180deg, rgb(255, 230, 0) 0%, rgb(51, 46, 0) 100%);
}

main .pricingwrappa .pricing .planname {
    color: rgb(0, 0, 0);
    font-size: 34px;
    font-weight: bold;
    margin-top: 10px;
}

main .pricingwrappa .pricing .price {
    color: #00ff15;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: larger;
}

main .pricingwrappa .pricing .button {
    background: linear-gradient(180deg, #ddffe7 0%, rgb(0, 255, 106) 100%);
    color: rgb(0, 0, 0);
    box-shadow: 0 0 666px 35px rgb(0, 0, 0);
    font-size: 32px;
    width: 100%;
    padding: 20px 10px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.5s;
    margin-top: 10px;

}


.ad-container {
    background: linear-gradient(180deg, rgb(0, 153, 255, 0) 0%, rgb(255, 255, 255) 10%);
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    cursor: pointer;
}

.close-button {
    background-color: rgb(255, 255, 255);
    width: 30px;
}

.imnotarobot {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 153, 0) 100%);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imnotarobot div {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 600px;
    height: 200px;
    background: linear-gradient(180deg, rgb(189, 189, 189) 0%, rgb(48, 48, 48) 100%);
    box-shadow: 0 0 12px 35px rgb(0, 0, 0);
    cursor: pointer;
}

.imnotarobot h1 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    margin-left: 20px;
}

.imnotarobot img {
    width: 100px;
    height: 100px;
}

main .finalbutton {
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgb(255, 0, 0) 0%, rgb(255, 153, 0) 100%);
    display: flex;
    align-items: center;
    font-size: 80px;
    border-radius: 20px;
    border: 5px solid rgb(0, 0, 0);
    justify-content: center;
    cursor: pointer;
}