body {
  background: #203c3b;
  font-family: 'Source Sans Pro', sans-serif;
  color:#ffffff;
  padding: 0 2%;
  
}

h1 {
  font-size: 60px;
  font-family: 'Fredoka One', cursive;
  color: #f6e271;
  text-align: center;
}

h2{
  font-size: 35px;
  font-family: 'Fredoka One', cursive;
  color: #ffffff;
  opacity: 80%;
}

h3 {
  font-size: 25px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  color: #ffffff;
}

h4 {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Source Sans Pro', sans-serif;
  color: #f6B915;
  text-transform: capitalize;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  background-color: #6B9493
} 

a:visited {
  color: #ffffff;
}

#profile {
  display: grid;
  margin-bottom: 10%;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  justify-items: center;
}

.profile-box {
  grid-column: span 1;
}

.profile-box img {
  border-radius: 50%;
  object-fit: contain;
  width: 300px;
}

#projects {
  display: grid;
  margin: 0% 2%;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}

.projects-box {
  background-color: #447270;
  grid-column-end: auto;
  box-shadow:  5px 5px 0px 0px #f6B915;
  padding: 8px;
}

.chart-box {
  width: 80%;
  margin: auto;
  padding-top: 10%;
  padding-bottom: 10%;
}


/* Responsiveness LARGER PHONE */
@media (min-width: 400px) {

h2{
  font-size: 40px;
}

#projects {
  margin: 0% 5%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.projects-box {
  padding: 10px;
}
}


/* Responsiveness TABLET */
@media (min-width: 768px) {

h1 {
  font-size: 70px;
}

#projects {
  margin: 0% 10%;
}

.profile-box img {
  width: 400px;
}

.chart-box{
  width: 60%;
}

}

/* Responsiveness SMALL SCREEN */
@media (min-width: 992px) {
  h1 {
    font-size: 80px;
  }

#projects {
  margin: 0% 15%;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.profile-box img {
  width: 480px;
}

.chart-box {
  width: 50%;
}

}


/* Responsiveness BIG SCREEN */
@media (min-width: 1100px) {
  
  .chart-box {
    width: 40%;
  }
}