:root {
    --fuzzy-wuzzy-brown: #c55e5e;
    --japonica: #dc7b66;
    --wafer: #decfcc;
    --can-can: #d59497;
    --emperor: #564b47;
    --tonys-pink: #ecac97;
    --contessa: #c97778;
    --mojo: #c34240;
  }
  
  .center-box {
    background-color: white;
    width: 800px;
    min-height: 200px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 4px solid var(--emperor);
    font-size: 40px;
    margin-top: 70px;
    font-family: 'Silkscreen', sans-serif;
    box-shadow: 8px 8px 0px black;
    transition: all 0.3s ease-in-out;
  }
  
  .center-box:hover {
    background-color: var(--wafer);
    transform: rotate(-2deg) scale(1.1);
  }
  
  .study-about-heading {
    font-family: 'Silkscreen', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .study-about-text {
    font-size: 24px;
    line-height: 3;
    text-align: center;
  }
  
  .cat-image {
    width: 300px;
    position: fixed;     
    bottom: 2px;       
    left: 40px;          
    z-index: 1000;       
    transition: all 0.3s ease-in-out;
  }
  
  .cat-image:hover{
    transform: rotate(-6deg) scale(1.1);
  }


  .strawberry-image {
    width: 200px;
    position: fixed;     
    top: 150px;       
    right: 150px;         
    z-index: 000;      
    transition: all 0.3s ease-in-out;
  }
  
  .strawberry-image:hover{
    transform: rotate(-6deg) scale(1.1);
  }


  .welcome-image {
    width: 280px;
    position: fixed;     
    top: 480px;       
    right: 220px;         
    z-index: 1000;       
    transition: all 0.3s ease-in-out;
    transform: rotate(-15deg);
  }
  
  .welcome-image:hover{
    transform: rotate(0deg) scale(1.1);
  }