html {
    scroll-behavior: smooth;
  }
body{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
h1{
    font-family: "Montserrat-Black";
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.5;
}

h2 {
    font-family: "Montserrat-Bold";
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.5;
}

h3 {
    font-family: "Montserrat-Bold";
    font-weight: bold;
    font-size: 1.5rem;
}

p {
    color: gray;
}
#title{
    background-color: blueviolet;
    color: azure;
}

.container-fluid{
    padding: 3% 15%;
}


/* Navigation Bar  */

.navbar {
    padding: 0 0 4.5rem;
}

.navbar-brand {
    font-family: "Ubuntu";
    font-size: 2.5rem;
    font-weight: bold;
}

.nav-item { 
    padding: 0 18px;
}

.nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat-Light";
}

/* Download Button  */

.download-button {
    margin: 5% 3% 5% 0;
}
/* Title  */

.title-image {
    width: 21%;
    transform: rotate(25deg);
    position: absolute;
    right: 24%;
    
}

/* Features  */

#features {
    text-align: center;
    padding: 7% 15%;
    background-color: #fff;
    position: relative; 
}

.feature-box {
    text-align: center;
    padding: 5%;
}

.icon {
    color: #b05de0;
    margin-bottom: 1rem;
}

.icon:hover {
    color: #7816c9;
}

/* Testimonial Section  */

#testimonials {
    
    text-align: center;
    background-color: blueviolet;
    color: aliceblue;
}

.carousel-item {
    padding: 7% 15%;
}

.testimonial-image {
    width: 25%;
    border-radius: 100%;
    margin: 20px;
}

#press {
    background-color: blueviolet;
    text-align: center;
    padding-bottom: 3%;
}

.logo-press {
    width: 15%;
    margin: 20px 20px 50px;
}

/* Pricing Section  */

#pricing {
    padding: 100px;
    text-align: center;
}

.pricing-column {
    padding: 3% 2%;
}

/* CTA */

#cta {
    background: blueviolet;
    color: #fff;
    padding: 5% 20%;
    text-align: center;
}

#cta button {
    margin: 60px 20px;
}

#cta h3 {
    font-size: 3.5rem;
    line-height: 1.5;
    font-weight: 800;
}

/* FOOTER */

#footer {
    background-color: #fff;
    padding: 5%;
    text-align: center;
}

#footer i {
    margin: 20px 10px;
}

/* Media Queries  */

@media screen and (max-width: 1020px) {
    
    #title {
        text-align: center;
    }

    .title-image {
        position: static;
        transform: rotate(0);
    }
}