body {
  background-image: url(backg-1.jpeg);
  background-repeat:no-repeat;
  background-color: #333;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  height: 100vh;
  background-size: cover;
}

.body-content {
  background-color: #33333300;
  margin: 15px;
  margin-top: 90px;
  display: flex;
  justify-content: center;
  padding: 15px;
}
@font-face {
  font-family: 'Satisfy';
  src: url('Satisfy-Regular.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'YourFontName', sans-serif; /* Use the font in your styles */
}

.intro {
  color: white;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@keyframes shadowLoop {
  0%{
    text-shadow: 2px 2px 4px rgba(167, 17, 17, 0.891);
    color: white;
  }
  25%{
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.866);
    color: rgba(172, 18, 18, 0.726)
  }
  50%{
    text-shadow: 2px 2px 4px rgba(174, 171, 171, 0.822);
    color: black;
  }
  75%{
    text-shadow: 2px 2px 4px rgba(180, 14, 14, 0.866);
    color: aliceblue;
  }
  100%{
    text-shadow: 2px 2px 4px rgba(167, 17, 17, 0.891);
    color: white;
  }
  
}

.name {
  font-family: 'League Spartan', sans-serif;
  font-weight: bolder;
  font-size: larger;
  text-align: center;
  text-shadow: 3px 3px 3px rgba(255, 0, 0, 0.822);
  color:black;
  animation: shadowLoop 3s infinite;

}
.intro2{
  color: white;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: x-large;
  font-weight: 400;
}
.satisfy{
  font-family: Satisfy !important;
  text-decoration: underline;
}
.abt-me{
  display:block;
  justify-content: center;
  text-align: left;
  padding: 30px;
  margin: 100px;
  margin-top: 60px;
  background-color: #fffbfb2c;
  overflow: hidden;
  border-radius: 50px;

}
.plum{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.skill-card {
  text-align: center;
  padding: 20px;
  border: 2px solid #ffffff89;
  border-radius: 8px;
  font-family: 'League Spartan';
}

.skill-icon {
  max-width: 100%;
  height: auto;
}
.py:hover{
  content: url(https://static.vecteezy.com/system/resources/previews/012/697/295/original/3d-python-programming-language-logo-free-png.png);
  transition: 5ms;
}

.skill-card:hover {
  background: linear-gradient(to right, rgba(255, 0, 0, 0.163), rgba(103, 59, 59, 0.518), rgb(110, 35, 35));
  color: white; 
  border: 3px solid rgba(0, 0, 0, 0.537);
}

footer {
  background-color: rgba(255, 255, 255, 0.378);
  color: #000000;
  padding: 20px 0;
  text-align: center;

}



.social {
  border-color: beigex;
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}

.social .git,
.linkdln,
.gmail,
.codewar,
.doodle {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;


}

.social {
  list-style: none;
  padding: 2;
  text-align: center;
}

.social li {
  display: inline-block;
  margin-right: 15px;

}

.gmail:hover,
.codewar:hover,
.doodle:hover,
.linkdln:hover,
.git:hover {
  width: 45px;
  height: 45px;
  cursor: pointer;

}

@media screen and (max-width: 700px ){   /* Mobile*/
  body{
    background-image: url(mobilebg.jpg);
    background-color: #333;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat-y;
    background-size: cover;
  }

  .abt-me{
    margin: 30px;
    background-color: #00000073;
  }
  .plum{
    display: none;
  }
  .intro2{
    font-size: medium;
  }
  .skill-icon {
    max-width: 50%;
    height: auto;
  }
  .skill-card {
    color: white;
  }
  .custom{
    background-color: white;
  }
  
  
}
@media screen and (min-width: 700px ){  
  body{
    
    background-color: #333;
    background-position: center;
    background-attachment: fixed;
  }
  
}
