body {
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {  
    font-family: "Montserrat", sans-serif; 
    font-weight: 900;
}

h1, h2 {
    font-size: 3rem;  
    line-height: 1.5;  
}

h3 {
    font-size: 1.5rem;
}

h4 {
    padding-top: 1.0rem;
    font-weight: 500;
    font-size: 1.5rem;
}

p {
    color: black;
    font-size: 1.25rem;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
}

/* Containers */

.container-fluid {
    padding: 3% 10%;
}

/* Sections */

/*
#14279B
#3D56B2
#5C7AEA
#E6E6E6
*/

.colored-section-dark {
    background-color: #14279B;
    color: #FFF;
}

.colored-section-light {
    background-color: #3D56B2;
    color: #FFF;
}

.white-section {
    background-color: #E6E6E6;
}

/* Navigation Bar */

.logo {
    width: 80px;
    margin-right: 20px;
}

.navbar {
    padding: 0 0 2.5rem;
}

.navbar-brand {
    font-family: Ubuntu;
    font-size: 2.25rem;
    font-weight: bold;
    padding-right: 20px;

}

.nav-item {
    padding: 0 5px;
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

/* Download Buttons */

.download-button {
    margin-top: 20px;
    margin-right: 20px;
    vertical-align: middle;
}

.download-button:hover {
    color: #E6E6E6;
}

/* Customize the Microsoft badge's appearance */

ms-store-badge::part(img) {
    margin-top: 20px;
    height: 100px;
    vertical-align: middle;
}

/* Title Section */

/* container-fluid specifically inside the title section */
#title .container-fluid {
    padding: 3% 15% 7%;
    text-align: left;
}

/* Title Image */

.image-div {
    position: relative;
}

.title-image {
    width: 100%;
    transform: rotate(15deg);
    position: absolute;
    top: 10%;
    left: 5%;
}

/* Features */

#features {
    position: relative;
    z-index: 1; /* Makes bottom of title image hide behind features section when it's large. */
}

.feature-box {
    padding: 2%;
}

.icon {
    color: #3D56B2;
    margin-bottom: 1rem;
}

.icon:hover {
    color: #5C7AEA;
}

/* Testamonials */

.carousel-inner {
    height: 400px;
}

/* Learn More and Support */

#learn-more {
    padding: 100px 0px 100px;
}

/* Call to Action */

.cta-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.5;
}

/* Footer */

.social-icon {
    margin: 20px 20px;
    font-size: 100px;
    text-decoration: none;
}

/* Media Queries */

@media (max-width: 1028px) {
  
    .navbar-brand {
        font-size: 1.5rem;
    }

    .logo {
        width: 80px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .title-image {
        position: relative;
        transform: rotate(0);
        width: 90%;
    }  

    #title .container-fluid {
        padding: 3% 10% 7%;
        text-align: center;
    }

    ms-store-badge::part(img) {
        margin-bottom: 10px;
    }

    .carousel-inner {
        height: 640px;
    }
}