
/*Universal Styles*/

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

h1, h2, h3 {
    color: #e7e7e7;
    font-family: "Montserrat";
    font-weight: bold;
}

p {
    color: #e7e7e7;
}

.mini-img {
    width: 10%;
    padding: 1%;
}

/*Headings & Titles*/

.big-heading {
    color: white;
    font-size: 3rem;
    line-height: 1.5;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.59);
    padding-bottom: 1%;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.5;
}

.feature-title {
    font-size: 1.5rem;
}

/*Section Styles*/

.container-fluid {
    padding: 7% 15%;
}

.colored-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.coloredLin-section {
    background: linear-gradient(#e73c7e,#ee7752,#23a6d5,#23d5ab);
    background-size: 400% 400%;
}

.black-section {
    background-color: rgb(37, 37, 37);
}
.pink-section{
    background: linear-gradient(rgb(37, 37, 37), #e73c7e);
}


#title {

    padding: 0 0 10% 0;
    text-align: left;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#features {
    position: relative;
    z-index: 1;
}

/* Navigation & Title Area */

.navbar {
    padding: 0 0 5rem;
}

.navbar-brand {
    font-family: "Ubuntu";
    font-size: 2.5rem;
}

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

.nav-link {
    font-size: 1.2rem;
    font-family: "Montserrat";
}

.download-button {
    margin: 1% 1% 5% 0;
    border-radius: 40px;
}

.title-info {
    padding: 10% 0 0 4%;
}
.title-image {
    padding: 0 0 0 0%;
    z-index: 0;
    position: absolute;

}

#title .container-fluid {
    padding: 3% 15% 3%;
}

@media (max-width: 1080px) {
    #title {
        text-align: center;
    }
    
    .title-image {
        position: static;
        transform: rotate(0);
    }
}

/* Descriptions */


.description-box {
    padding: 1%;
}

.icon {
    color: #7e72ef;
    margin-bottom: 1rem;
}

.icon:hover {
    color: #674cff;
}

/* Work */

#work {
    position: relative;
    z-index: 1;

}

.work-img {
    width: 10%;
    margin: 20px;
}

.work-text {
    font-size: 3rem;
    line-height: 1.5;
}

/* team */

#team {
    padding: 100px;
}

.card {
    border-color: none;
    border-top: none;
    border-bottom: none;
    border-radius: 5%;
    background: linear-gradient(rgb(0, 0, 0), #e73c7e);
}   

.team-column {
    padding: 3% 2%;
}

.teams-img {
    padding-top: 5%;
    width: 40%; 
    margin: auto;
}

.team-text {
    color: rgb(255, 255, 255);
    font-size: 3rem;
    line-height: 1.5;
}


.card-description {
    color: rgb(255, 255, 255);
}

/* Footer */

.social-icon {
    margin: 20px 10px;
}