body {
background-repeat: no-repeat;
background-size: contain; 
background-image: url('github-universe.jpg');
font-family: 'Raleway', sans-serif;
width: 100vh;
height: 100%;
}

.header {
  width: 100vw;
  /* display: flex;
  flex-direction: row;
  align-items: flex-start; */
  justify-content: center;
  gap: 50px;
  margin-top: 100px;
}



.image {
  border-radius: 50%;
  width: 200px;
  margin-top: 1rem;
  -webkit-box-shadow: 5px 5px 10px 5px #000000; 
  box-shadow: 5px 5px 10px 5px #000000;
  transition: width 2s, height 2s, background-color 2s, transform 2s;
  
}

.header-text {
  display: flex;
  flex-direction: column;
  line-height: 10px;
  font-size: large;
  color: #f5eeed;
}

.header-text span {
  color: white;
  text-shadow:  4px 5px 8px rgba(0, 0, 0, 0.308);
}

.image:hover {
  transform: rotate(360deg);
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  grid-gap: 5px;
  padding: 20px;
  margin: 150px;
  width: 80vw;
  
}

.repo-info p {
  color: #000;
}

.repo-link {
  text-decoration: none;
  
}

a.repo-link{
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.37);
  color: rgb(141, 132, 132);
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  grid-gap: 5px;
  padding: 20px;
  margin: 150px;
  width: 80vw;
}

.technigo-repos {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  align-items: center;
  background-image: linear-gradient(120deg, #807474 0%, #ebedee 100%);
  border-radius: 1rem;
  min-width: 200px;
  max-width: 400px;
  width: 70%;
  color: black;
  gap: 0.5rem;
}

.chart-container {
  display: flex;
  justify-content: center;
  width: 600px;
}


/* -------------- media queries for mobile mode---------------*/

@media (max-width:667px) {
  body {
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    margin: 0;
  }

   .myDiv {
    left: 0;
    width: 100vw;
  }

  .container {
    width: 90vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
  }

  .header {
    
    flex-direction: column;
    margin-left: 20px;
    color: #fff;
  }

  .header img {
    width: 100px;
    margin-top: -80px;
    
  }

  .header-text {
/*     line-height: 10px; */
/*     margin-top: 0px; */
    font-size: 100%;
    line-height: 1px;
    margin-top: -10px;
    
}

.chart-container {
  width: 400px;
  
}

}


/* -------------- media queries for tablet mode---------------*/

@media (min-width:668px){
  body {
    background-repeat: no-repeat;
    width: 100vw;
    height: 100%;
    margin: 0;
  }

   .myDiv {
    left: 0;
    width: 100vw;;
  }

  .container {
    width: 95vw;
    display: flex;
    flex-direction: row;
    margin: 110px 0;
    gap: 20px;
  }

  .technigo-repos {
    width: 90vw;
  }

  .header-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header-text {
    line-height: 30px;
    margin-top: -60px;
    font-size: 120%;
    
    
  }

  .header-text h1 {
    line-height: 10px;
    margin: 20px;
  }

  .header p {
    margin: 10px;
  }
  .chart-container {
    width: 600px;
    margin: 0 auto;
  }
  
}
