  body {
    font-family: 'Rubik';
    background: hsl(226, 43%, 10%);
    color: white;
    min-height: 100vh;
    padding: 2rem;
  }
  
  .container { 
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: 30px auto;
  }
  
  .profile-card {
    grid-row: 1 / 3;
    background: hsl(235, 46%, 20%);
    border-radius: 15px;
  }

  .profile-info p {
    opacity: 0.8;
    color: hsl(236, 100%, 87%);
  }
  
  .profile-content {
    background: hsl(246, 80%, 60%);
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    border-radius: 15px;
  }
  
  .profile-img {
    width: 80px;
    border: 3px solid white;
    border-radius: 50%;
    margin-bottom: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 1rem 0;
  }
  
  .time-nav ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 1rem 2rem;
    list-style: none;
  }
  
  .time-nav li {
    color: hsl(235, 45%, 61%);
    cursor: pointer;
    padding: 0.5rem 0;
  }
  
  .time-nav li:hover{
    color: #f4f4f4;
  }

  .time-nav li.active {
    color: white;
  }
  
  .card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }

  .card-content:hover {
    background-color: hsl(235, 46%, 28%);
  }
  
  .card-top {
    height: 70px;
    background-position: 92% -30%;
    background-repeat: no-repeat;
  }

  .card .icon{
    position: absolute;
    top: -10px;
    right: 30px;
    height: 70px;
    width: 70px;
  }
  
  .card-content {
    background: hsl(235, 46%, 20%);
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
    margin-top: -2rem;
    border-radius: 15px;
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
    padding: 0;
  }

  .card-header h2{
    font-weight: 500;
  }
  
  .card-stats h3 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.2rem;
    margin-top: 1rem;
  }

  .card-stats p{
    font-weight: 300;
    color: hsl(235, 45%, 61%);
  }
  
  .work .card-top { background-color: hsl(15, 100%, 70%); }
  .play .card-top { background-color: hsl(195, 74%, 62%); }
  .study .card-top { background-color: hsl(348, 100%, 68%); }
  .exercise .card-top { background-color: hsl(145, 58%, 55%); }
  .social .card-top { background-color: hsl(264, 64%, 52%); }
  .self-care .card-top { background-color: hsl(43, 84%, 65%); }
  

  @media (max-width: 768px) {
    .container {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
  
    .profile-card {
      grid-row: auto;
    }

    .profile-img {
        width: 50px;
        border: 3px solid white;
        border-radius: 50%;
        margin-bottom: 0.5rem;
    }

    .profile-content{
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 30px;
        padding-right: 15px;
        padding-bottom: 32px;
    }

    .profile-info br {
        display: none;
    }

    .profile-info p {
        margin: 0;
        padding-left: 15px;
    }
    .profile-info h1 {
        margin: 0;
        padding-left: 15px;
        white-space: nowrap;
        font-size: 1.5rem; /* Adjust font size if needed */
    }
      
  
    .time-nav ul {
      flex-direction: row;
      justify-content: space-around;
      margin: 0;
      padding: 0;
      padding-top: 15px;
      padding-bottom: 15px;
    }
  
    .card-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;

    }
  
    .card-stats h3 {
      font-size: 2.0rem;
      margin-bottom: 1rem;
    }

    .card-stats p{
        margin-top: 1rem;
        font-size: 0.8rem;
        padding: 20px auto;
    }
  }