/*Main Home Page*/
/*Upper Section Styling */
.upper_section {
  background: #9302F0;
  background: linear-gradient(180deg, #e603f2 0% 20%, #9302F0 80%);
  /* display: flex; */
  overflow: hidden;
}

.navbar-toggler-icon{
  margin-right:7px ;
}
.navbar-text {
  font-family: 'Montserrat', sans-serif;
  color: white;
  padding-left: 20px;
  font-size: 20px;
}
.welcome-h1{
  padding-top: 100px;
  font-family: 'Pacifico', cursive;
  font-size: 6.8rem;
  text-align: left;
  color:white;
  padding-left: 100px;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.3));
  margin: auto;
}
.welcome-h3{
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  padding-left: 130px;
  padding-top: 5px;
  margin: auto;
}
.greeting-text{
  padding-bottom: 200px;
}
.welcome-image{
  padding: 0;
  height: 60%;
  width: 60%;
  position: absolute;
  left:40%;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.4));
  z-index:1;
}
.curve{
  margin-top: -2px;
}
/*Upper Section Ends*/
/* Middle Section( Styling Start */
.middle-section{
  background-color: #fff;
  margin-top: 35px;
  /* display: block; */
    margin-bottom: 125px;
    width:80%;
    margin-right: auto;
    margin-left: auto;
  }
  .articles-link{
    text-decoration: none;
    color: inherit;
  }
  .articles{
    /* height: auto; */
    width: 70vw;
    margin: auto;
    padding-top: 40px;
    /* padding-left: 8.33%; */
  
  }
  .middle-text{
    text-align: left;
    padding-left: 1px;
  }
  .middle-h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1rem;
  }
  .middle-h2{
    font-family: 'Montserrat',sans-serif;
    font-weight: 300;
    font-size: 1.7rem;
  }
  .middle-h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
  }
  /* Middle Section End   */

/* Bottom Section */
.footer{
  background: #9302F0;
  background: linear-gradient(360deg, #e603f2 0% 20%, #9302F0 80%);
  margin-top: 100px;
  display: flex;
  margin: auto;
  overflow: hidden;
}
.socials{
  margin:auto;
  padding-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-content: center;

}
.post-button{
  background-color:#9302F0;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  font-size: 14.5px;
  position: relative;
  left:41.5%;
  border-radius: 7px;
  margin:auto;
  font-family: 'Montserrat';
}
.bi{
  /*SOCIAL MEDIA ICONS*/
  content: icon;
  color:#fff;
  margin: 22px;
  height: 40px;
  width: 40px;
  position: relative;
  left:76.4%;
}
.line{
  font-size: 1rem;
  color: #fff;
  position: relative;
  top: 30px;
  left:16.5%;
  font-weight: lighter;
}
.copyright-text{
  position: relative;
  right:33.5%;
  margin-top:100px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  color:#fff;
  font-weight: 200;
  margin-bottom: 25px;
}
/* Bottom Section End */
/* Media Query */
@media only screen and (max-width: 1280px) {
  .welcome-h1{
    font-size: 7.5rem;
    text-align: center;
    padding: 0

  }
  .welcome-h3{
    font-size:1.6rem;
    text-align: center;
    padding-left:40px;
    padding-right: 40px;
    margin: auto;
  }
  .welcome-image{
    height: 45%;
    width: 45%;
    position: relative;
    bottom: 50%;
    left:27.5%;
    padding: 10vw;
}
.navbar-text{
/* font-size:2.5rem; */
padding: auto;
/* margin: auto; */
}
.footer{
  height: auto;
}
}
/* Media Query End */
/* Media Query for large Display */
@media only screen and (min-width: 2000px){
  .welcome-image{
    position: absolute;
    bottom: 50%;
    left:40%;
    height: 55%;
    width: 55%;
    padding-top: 70px;
    padding-bottom: 50px;
} 
.welcome-h1{
  font-size: 7rem;
  
  padding-left: 400px;

}
.welcome-h3{
  font-size: 1.5rem;
  padding-left: 440px;
  margin: auto;
}
}
/* Media Query for large display END */

/*Pseudo Classes*/
.bi:hover{
 opacity:0.8;
 box-shadow: #ffffff;
}

.post-button:hover{
  background-color:#e603f2;
  opacity:0.9;
}

.articles-link:hover{
  opacity: 0.8;
}
::selection{
  background-color:#04de7f;
}
/* To remove Selectability */
.navbar-text,.welcome-h1,.welcome-image,.welcome-h3,.line {
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none;
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
}


