#homeHeading {
    font-size: 80px;
    color: black;
    font-family: 'Barlow', sans-serif;
  -webkit-text-stroke: 0.02em white;
  background-color: rgb(255,255,255);
  background-color: rgba(255,255,255, 0.5);

    

}
.homeHeader{
    display: flex;
    background-image: url('./homeSlide/denver-790472_1920.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    align-items: center;
    justify-content: center;
    position:relative;
}
#unitedHeading{
    color:#000;
    font-size: 80px;
    -webkit-text-stroke: 1px #FFF;
    background-color: rgb(256,256,256);
    background-color: rgba(256,256,256, 0.3);
    position: relative;
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
    
}
#homeMain{
    background-image: linear-gradient(rgba(256,256,256, 0.5), rgba(117, 120, 136, 0.5), rgba(18, 24, 91, 0.5)  );
    width: 80%;
    margin: 50px auto 0 auto;
    
}
#homeGrid{
    display: grid;
    width: 90%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "c3 pic"
                         "c4 pic"
                         "c5 pic"
                         ;
    justify-content: space-around;
    margin: auto;
}
#coreD3{
    grid-area: c3;
}
#coreD4{
    grid-area: c4;
}
#coreD5{
    grid-area: c5;
}
#coreD2{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "h1 h2"
                         "p1 p2";
}
#coreH1{
    grid-area: h1;
}
#coreP1{
    grid-area: p1;
    width: 90%
}
#coreH2{
    grid-area: h2;
}
#coreP2{
    grid-area: p2;
    width: 90%;
    justify-self: end;
}
#homeText{
    width: 80%;
    margin: auto;
    font-size: 18px;
    grid-area: text;
    position: relative;

    

}
#homePic{
    margin:20px  auto;
    max-width: 70%;
    grid-area: pic;
    align-self: center;
    border-radius: 10px;

 

}
#free{
    grid-area: free;
    font-size: 32px;
}
#homeText2{
 
    margin: 20px auto;
    text-align: justify;
    font-size: 18px;
    width: 90%;
    padding-bottom: 20px;


}