body {
  box-sizing: border-box;
  min-width: 325px;
  background-color:#53565A;
  font-family: Arial, Helvetica, sans-serif
}

.wrapper {
  margin: 5% 0;
}


h1 {
  margin-top: 10%;
  color: Black;
  text-align: center;
  font-size: 30px;
}


.profile-container {
  text-align: center;
  color: white;
  align-items: center;
}

h4 {
  margin: 2% 0;
  font-size: 28px;
  color:black;
}
/* not working prolly something in JS but I can't figure it out */
img {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  border: 1px solid white;
  
}

h2 {
  text-align: center;
  color: black;
}


.chart-container {
  width: 70%;
  margin: 0 0 10% 15%;
}


.projects-list {
  border: 1px solid #b8c3bd;
  padding: 4%;
  height: 100%;
  color: black;
  font-size: 17px;
}
.projects-individual {
  border-bottom: 1px solid #b8c3bd;
}


a:link {
  color: white;
}


a:visited {
  color: white;
}


a:hover {
  color: black;
}


@media (min-width: 668px) and (max-width: 1024px) {
 
  h1 {
    font-size: 45px;
  }
  
  h4 {
    font-size: 38px;
  }
  
  h2 {
    font-size: 40px;
  }

  /* not working prolly something in JS but I can't figure it out */
  img {
    width: 40%;
    height: 40%;
  }

  .chart-container {
    width: 50%;
    margin: 5% 0 5% 27%;
  }

  
  .projects-list {
    text-align: center;
  }
}


@media (min-width: 1025px) {
  .big-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 2%;
  }

  
  h1 {
    font-size: 60px;
    margin-top: 4%;
  }

  
  h4, h2 {
    font-size: 40px;
  }

  
  .projects-list {
    padding: 0 0 0 5%;
    font-size: 16px;
    border-bottom: 1px solid #b8c3bd;
  }

  .projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}