@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@1,400;1,600&display=swap');

.vh-100-size{
    min-height: 100vh !important;
}

.row{
    margin: auto 0;
}

body{
    font-family: 'Alegreya', serif;
    color: white;
    font-size: 19px;
}

html{
    scroll-behavior: smooth;
}

.home-section{
  background-image: url("./images/background.jpg");
  background-size: cover;
  width: 100%;
  height: 635px;
}

.navbar{
  position: fixed;
  color: white;
  bottom: 30px;
  left: 0px;
}
.fa-bars,.fa-times{
  color: white;
  font-size: 25px;
}
.navbar-toggler:focus, .navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}
.icons{
  margin: 0px 5px;
  color: white;
}

.nav-link{
  padding: 5px 11px;
}

.sub-color{
  color: #ffc800;
}


.name-desgin img{
  height: 150px;
  width: 150px;
  animation: font-desgin 5s infinite;
}

.dark-theme{
 background-color: #191715;
}

.image-shape{
  height: 100px;
  width: 100px;
  margin: 2px;
  background: #ffc800;
  transition: 0.1s ease-in-out;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.image-shape img{
  height: 90%;
  width: 90%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 5px;
}

.image-shape:hover{
  height: 110px;
  width: 110px;
}

.skillImage{
  height: 190px;
  width: 300px;
}

.bordered-section{
  border-left: 3px solid #ffc800;
  position: relative;
}
.hexagon-shape{
  position: absolute;
  height: 25px;
  width: 25px;
  top:-4px;
  left: -14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #ffc800;
}
.shape-animation1{
  animation: hexagonspinner 4s infinite forwards;
}

.shape-animation2{
  animation: hexagonspinner 4s infinite forwards 2s;
}
.shape-animation3{
  animation: hexagonspinner 4s infinite forwards 4s;
}

.inner-shape{
  position: absolute;
  height: 15px;
  width: 15px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #191715;
  margin: 5px;
}

.lightdark-theme{
  background-color: #000000e0;
}

.fa-telegram{
  offset-path: path('M20,20 C20,100 200,0 200,100');
  color: #ffc800;
  font-size: 30px;
  animation: sendTelegram 5s infinite;
}

.mediaIcons{
  font-size: 30px;
  margin: 2px;
}

.contact-image{
  position: absolute;
  height: 80px;
}

.contact-section img:nth-child(1){
  top:80px;
  left: 90px;
  animation: firstchild 15s infinite ;
}
.contact-section img:nth-child(2){
  top:35px;
  left: 180px;
  animation: secondchild 15s infinite; 
}
.contact-section img:nth-child(3){
  top: 110px;
  left: 240px;
  animation: thirdchild 15s infinite;
}
.contact-section img:nth-child(4){
  top:45px;
  left: 320px;
  animation: fourthchild 15s infinite ;
}
@media (max-width :768px) {
  .navbar{
    left: -18px;
    bottom: 10px;
  }
}