@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
h1{
  font-family: 'Rubik Mono One', sans-serif;
      font-size: 75px;
      color: 	white;
      display:inline-block;   
      animation: example 2s ease-in-out infinite;
      padding-left: 50px;
      margin-top: -2000px;
}
@keyframes example {
  from{color:white}
  to {color: black}
}


.logo{   
   margin-left: -150px;
  margin-top: 40px;
  width: 220px;
}
#header{
  height: 30vh;
  background-image: url(images/img.jpeg);
  max-height: 30vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background-color: #12172b;
    background-position: center;
    background-size: cover;
    z-index: 2;
    transition: .5s;
}
nav ul li{
    list-style: none;
    margin: 90px 20px;
}
a{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: none;
    color:white;
    font-size: 27px;
    
}
li :hover{
    background-color: black ;
    transition-duration: 0.7s;
}

#menuBtn{
    margin-top: 20px;
    width: 95px;
    position: fixed;
    right: 30px;
    top: 12px;
    z-index: 2;
    cursor: pointer;
}

.footer {
    padding: -20px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-image: linear-gradient(to left ,black,dimgray );
  }  

  .footer a {
    float: left;
    padding-top: 5px;
  
}
  
  .footer a:hover {
    background-color: #ddd;
    color: black;
  }
  #logo-footer{
      padding-left: 55px;
    width: 60px;
    height: 45px;
    float: right;
  }
#copy-right{
    float: right;
    margin-top: 20px;
    margin-right: 15px;
    color: white;
}
::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #12172b; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #12172b; 
  }



* {
  padding: 0;
  margin: 0;
}

body {
/*  background-position: center;
    background-size: cover;
    background-attachment: fixed;
  */
  font-family: "Poppins", sans-serif;
}

.container {
     background-color: white;
  color: white;
  align-self: center;
  justify-content: center;
  display: flex;
}

.heading {
    text-align: center;
  font-size: 50px;
  color: black;
  width: 40%;
  animation: try 2s ease-in-out infinite;
}

@keyframes try{
  from{color:white}
  to {color: black}
  0% {
      transform: translate(-75%,-90%);
  }
  50%{
      text-shadow: 0 15px 40px rgba(0,0,0, .6);
  }
  100% {
      transform: translate(50% , -10%);
  }
}


.heading span {
  font-size: 50px;
}

.profiles {
  display: table-row;
  justify-content: space-around;
  background-color: white;
  width: 100%;
}

.profile {
    padding: 12px;
    margin-left: 35%;
  flex-basis: 260px;
}

.profile .profile-img {
  height: 260px;
  width: 260px;
  border-radius: 50%;
  filter: grayscale(100%);
  cursor: pointer;
  transition: 400ms;
}

.profile:hover .profile-img {
  filter: grayscale(0);
}

.user-name {
  margin-top: 30px;
  font-size: 35px;
}

.profile h5 {
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 3px;
  color: black;
}

.profile p {
    color: black;
  font-size: 16px;
  margin-top: 20px;
  text-align: justify;
}

@media only screen and (max-width: 1150px) {
  .profiles {
    flex-direction: column;
  }

  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile p {
    color: black;
    text-align: center;
    margin: 20px 60px 80px 60px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .heading {
    font-size: 40px;
    color: black;
    text-align: center;
  }

  .heading span {
    font-size: 15px;
  }

  .profiles {
    margin: 20px 0;
  }

  .profile p {
    margin: 20px 10px 80px 10px;
  }
}
h3{
    color: black;
}

.grey-back{
    padding: 15px;
    background-color: grey;
}