 body {
  color: #2C3844;
  min-width: 325px;
  font-family: 'Oswald', sans-serif;
  background-color: #BBBFCA;
}

a {
  text-decoration: none;
  display: inline-block;
	padding: 0.3em;
	transition: .3s;
	transform: scale(1);
  color: #2C3844;
}

h2 {
  text-align: center;
  font-size: 30px;
  margin-top: 0;
}

.big-container a:hover {
  transform: scale(1.20);
  color:  #ff9800;
}

.big-container {
   margin: 2%;
  }

/* ===============
    Header
=============== */

h1 {
  text-align: center;
  font-size: 50px;
}

/* ===============
    Profile
=============== */
.profile-container {
  text-align: center;
}


.user-picture{
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 1px solid white;
  filter: grayscale(40%);
}

/* ===============
    Chart
=============== */

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

/* ===============
    Project
=============== */

.projects {
  display: block;
  padding: 20px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
  border-radius: 25px;
  text-align: center;
  margin: 10px; 
  background: #E8E8E8;
}

footer {
  height: 80px;
  background-color: #495464;
  text-align: center;
  font-size: 20px;
  color: #E8E8E8;
  padding-top: 5PX;
  width: 100%;
  bottom: 0;
}

/* =================
Tablet layout
================= */
@media (min-width: 668px) and (max-width: 1024px) {
  .projects-list {
    text-align: center;
  }
  .chart-container {
    margin: 10% 0 10% 15%;
  }

  .user-picture{
    width: 40%;
    height: 40%;
  }

  .chart-container {
    width: 50%;
    margin: 5% 0 5% 27%;
  }
  .projects{
    display: grid;
     grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto; 
    grid-gap: 1rem;
    padding: 20px;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    backdrop-filter: blur(5px);
    border-radius: 25px;
    text-align: center;
    margin: 10px; 
    flex-wrap: wrap;
    background: #E8E8E8;
  }

}
/* =================
Desktop layout
================= */
@media (min-width:1025px) {
  
  h3 {
    font-size: 30px;
    text-decoration: none;
  }
  
  .big-container {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    margin: 2%;
  }

 .projects{
  display: grid;
   grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto; 
  grid-gap: 1rem;
  padding: 20px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
  border-radius: 5px;
  backdrop-filter: blur(5px);
  border-radius: 25px;
  text-align: center;
  margin: 10px; 
  flex-wrap: wrap;
  background: #E8E8E8;
}

  .user-picture{
    width: 60%;
    height: 60%;
  }
  
  .info-contain {
   margin-top: -14px;
  }

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

  footer {
  clear: both;
  height: 80px;
  background-color: #495464;
  text-align: center;
  font-size: 20px;
  color: #E8E8E8;
  padding-top: 10PX;
  width: 100%;
  bottom: 0;
  }
}