/* Global Rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
  /* border: red 1px solid; */
  /* overflow-x: hidden; */
}

.topStrip {
  background-color: blueviolet;
  height: 2px;
}

body {
  font-family: "Montserrat", sans-serif;

  font-weight: 300;

  width: 100%;
  height: 100%;
}

body::after {
  content: "";

  background-image: url("./src/images/background-pattern.png");

  background-repeat: repeat;

  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
}

/* navbar */

ul > li > a {
  font-size: 1rem;
  font-weight: 600;
}

#intro {
  height: 100%;
  width: 100%;
   
  text-align: center;
  margin-bottom: 3.3rem;
}
.intro-img {
  width: 20%;
  margin: 6% auto 3% auto;
  border-radius: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  
}
.container{
  display: flex; justify-content: space-around;flex-wrap: wrap;
}
.card{
 width: 20rem;
 margin: 2%;
 margin-bottom: 10%;
}
.card img{
  height: 200px;
}
.techUsed{
  color: white;
}
.card-link.btn.btn-black{
  padding: 0;
}
#connect,#about,#techstack{
text-align: center;
margin: 2% auto;
}
 
 
 
#techstack h5{
  display: inline-block;
  color: white;
  
}
.socials a{
margin:0.3rem;
}
/* mobile portrait: less than 640px */
/* mobile landscape: > 640px */
/* tablet portrait: > 768px */
/* tablet landscape: > 1024px */
/* laptop: > 1280px */

@media screen and (max-width: 500px) {
  #intro {
    text-align: center;
  }
  .intro-img {
    width: 60%;
    margin: 10% auto 10% auto;
  }
}
  /* @media screen and (min-width:500px) and (max-width: 768px) {

 
  
  #intro{
    text-align: center;
  }
  .intro-img{
    
 width: 30%;

    margin: 7% auto 7% auto;

  }
} */
@media screen and (min-width:500px) and  (max-width: 1024px) {

 
  #intro{
    text-align: center;
  }
  .intro-img{
    
 width: 30%;

    margin: 7% auto 7% auto;

  }


}  
