/* Mobile View: extra small screens */
@media (max-width: 599px) {
  header h1 {
    font-size: 1.2rem;
  }

  p,
  .wordCard,
  footer p {
    font-size: 0.95rem;
  }

  aside {
    padding: 10px;
  }

  aside h3 {
    font-size: 1.1rem;
  }

  aside li a {
    font-size: 1rem;
  }

  .card {
    padding: 12px;
  }

  .stroke-img {
    max-height: 80px;
    object-fit: contain;
  }

  button {
    width: 100%;
    font-size: 1rem;
    padding: 10px;
  }

  .checkIn h2,
  .calenderArea h3 {
    font-size: 1.2rem;
  }

  .poemLine {
    flex-direction: column;
    gap: 4px;
  }

  table {
    width: 100%;
    font-size: 0.9rem;
  }

  .container {
    padding: 5px;
  }
}









@media (max-width:768px){
    body{
        max-width: 100vh;
        padding: 0;
        margin: 0 auto ;
       
    }
    .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "a"
        "b"
        "c"
        "d";
        width: 100vh;
        /* max-width: 100vh; */
    }
    
    .header{
        width: 100%;
        text-align: center;}
       

    
    aside{
        
        padding: 0.5rem;
        margin: 1rem auto;
    }
    aside ul{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
}

    
    aside ul  li{
        
        width: 100%;
        gap: 0.5rem;
        height: auto;
        font-size:1.2rem;
        background-size: cover;
    }
    .taskarea{
        display: flex;
        flex-direction:column ;

    }
    /* .scoreArea{
        position: static;
        margin: 1rem auto;

    } */
}
    
