/* You can add global styles to this file, and also import other style files */

/* // Fonts
// font-family: 'Archivo', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* // font-family: 'Nunito', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* // font-family: 'Anton', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
/* // font-family: 'Pacifico', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    font-family: 'Nunito', sans-serif;
}


.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    margin-right: 5px;
}

.label-babypink {
    background-color: #fcb2c4;
}

.label-pink {
    background-color: #fa849f;
}

.label-darkpink {
    background-color: #f5567b;
}

.label-purple {
    background-color: #f85ac9;
}

.btn {
    border-radius: 30px;
    width: 200px
}

.btn-primary {
    color: #fff;
    background-color: #f78ba4;
    border-color: #f78ba4;
}

.btn-primary:hover {
    color: #fff;
    background-color: #f86588;
    border-color: #f86588;
}

.fontAnton {
    font-family: 'Anton', sans-serif; 
}

.fontNunito {
    font-family: 'Nunito', sans-serif;
}

.fontArchive {
    font-family: 'Archivo', sans-serif; 
}

.fontPacifico {
    font-family: 'Pacifico', cursive;
}

.topbar {
    background-color: #ffc9d6;
    color: #fff;
    height: 20px;
}

.navbar {
    background-color: #fff2f2;
}

.jumbotron {
    background-image: url(../images/jumbotron.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10%;
}

.jumbotronContent {
    margin-top: 10%;
}

.jumbotronImage {
    height: 450px;
}

.headingOne {
    text-transform: capitalize;
    font-size: 70px;
    color: black;
}

.headingTwo {
    text-transform: capitalize;
    font-size: 64px;
}

.aboutsection {
    margin-top: 120px;
    background-color: #FFC9D6;
    color: black;
    padding: 80px 0;
}

.aboutContainer {
    background-color: white;
    padding: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
    -webkit-box-shadow: 5px 4px 38px 9px rgba(0,0,0,0.28); 
    box-shadow: 5px 4px 38px 9px rgba(0,0,0,0.28);
}

.contactSection {
    margin-top: 120px;
    padding: 80px 0;
}


a {
    text-decoration: none;
    color: #f5567b;
}

a:hover {
    text-decoration: none;
    color: #bb3957;
}

@media (max-width: 768px) { 
 body {
     text-align: center!important;
 }

 .jumbotrondiv {
     margin-top: 200px;
 }

 .aboutImage1 {
     display: none!important;
 }

 .aboutInfo {
     text-align: center!important;
 }

}

@media (max-width: 425px) { 
    body {
        text-align: center!important;
    }
   
    .jumbotrondiv {
        margin-top: 100px;
    }

    .jumbotronImage {
        height: 300px;
    }

    .headingOne {
        font-size: 40px;
    }
   
    .aboutImage1 {
        display: none!important;
    }
   
    .aboutInfo {
        text-align: center!important;
    }
   
   }
