* {
    box-sizing: border-box; 
 }
 body{
  background-color: #e4e3e1;
   
   margin: 45px;
   padding:20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   font-size: 25px;
   color: hsl(219, 20%, 47%);
   
   height: 100vh;
  }
  .container{
    margin: 10px;
    padding: 10px;
  }

  h1{
    
      margin: 0;
     font-size: 25px;
     text-align: center;
   
    
  }

 
  
  
  /* Mood Selection Buttons */
  .mood-grid, .trigger-grid, .response-grid {
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(3,1fr); */
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding:30px;
    text-align: center;
  }
  
  
  .mood-btn, .trigger-btn, .response-btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background-color: #ffe6e6;
    color:hsl(219, 20%, 47%) ;
    transition: background-color 0.3s ease;
  }

  .mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }
  
  .mood-btn{
    width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  
  justify-content: center;
  font-size: 1rem;
  border: none;
  border-radius: 50%;
 }

 .trigger-grid{
  display: grid;
  flex-direction: column;


 }
  
  .mood-btn:hover, .trigger-btn:hover, .response-btn:hover {
    background-color: #fddede;
  }
  
  /* Scale Section */
  .scale {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .circle.pink {
    width: 100%;
    height: 100%;
    background-color: #ffe6e6;
    top: 0;
    left: 0;
  }
  
  .circle.cream {
    width: 80%;
    height: 80%;
    background-color: #fff0e0;
    top: 10%;
    left: 10%;
  }
  
  .circle.light-blue {
    width: 60%;
    height: 60%;
    background-color: #dcecff;
    top: 20%;
    left: 20%;
  }
  
  .circle.blue {
    width: 40%;
    height: 40%;
    background-color: #a8c7e3;
    top: 30%;
    left: 30%;
  }
  
  .circle.dark-blue {
    width: 20%;
    height: 20%;
    background-color: #6e88a1;
    top: 40%;
    left: 40%;
  }
  
  .circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .text-reveal {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
  }