body {
    background-color: #002d18;
    font-family: 'Patua One', cursive;
}

.title {
    font-size: 40px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    font-weight: bold;
    font-family: 'Patua One', cursive;
}
.subtitle {
    font-size: 62px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top: 100px;
    font-family: 'Patua One', cursive;
}
.tiny-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.555);
    margin-top: 20px;
}
.div {
    position: absolute;
    left: calc(50% - 250px);
    z-index: 0;
    width: 500px;
    height: 500px;
    margin-top: -500px;
    border-radius: 100%;
    background-color: #ffffff;
    opacity: .8;
    -webkit-filter: blur(160px);
    filter: blur(160px);
}
.radial {
    width: 300px;
    height: 300px;
    position: absolute;
    top: -150px;
    left: calc(50% - 150px);
    border-radius: 50%;
    background: rgb(159,245,204);
    background: radial-gradient(circle, rgba(159,245,204,1) 13%, rgba(29,191,115,1) 72%);
}

.buttons {
    display: flex;
    justify-content: center;
}
.buttons .button {
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 20px;
    margin: 0px 5px;
    text-decoration: none;
    color: black;
}
.dl {
    background-color: #ff9800;
}
.login {
    background-color: #4caf50;
}

.pricing {
    text-align: center;
    margin: 50px 0px;
}
.pricing span {
    background-color: rgba(255, 255, 255, 0.281);
    padding: 30px 60px;
    border-radius: 50px;
    font-size: 40px;
    color: #fff;
}

.features {
    text-align: center;
    font-size: 40px;
    margin-top: 50px;
    color: #fff;
    text-decoration: underline;
}

.feature {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

.feature .number {
    display: flex;
}
.feature .number>* {
    align-self: center;
}

.feature .number .num {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.384);
    color: #002d18;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 40px;
}
.feature .number .name {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.95);
    margin-left: 20px;
}

.feature .description {
    margin-left: 50px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    font-size: 24px;
}

.feature .video {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.tag {
    background-color: #ffcf00;
    color: #333;
    padding: 0px 3px;
    border-radius: 3px;
    font-size: 18px;
}

.trial {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}


@media only screen and (max-width: 600px) {
    .div {
        width: 100%;
    }
    .feature {
        width: 98%;
    }
    .feature .number .num {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }
    .feature .number .name {
        margin-left: 10px;
        font-size: 26px;
    }
    .feature .description {
        font-size: 18px;
    }
  }