:root {

    --fuzzy-wuzzy-brown: #c55e5e;
    --japonica: #dc7b66;
    --wafer: #decfcc;
    --can-can: #d59497;
    --emperor: #564b47;
    --tonys-pink: #ecac97;
    --contessa: #c97778;
    --mojo: #c34240;
}
  


  .about-heading {
    font-size: 30px;
    margin-bottom: 10px;
    font-family: 'Silkscreen', sans-serif;
  }
  
  
  .intro-about {
    background-color: white;
    width: 100px;
    padding: 40px;
    position: absolute; 
    top: 180px; 
    left: 80px; 
    border: none;
    border: 4px solid var(--emperor);
    box-shadow: 8px 8px 0px black;

    transition: all 0.2s ease;
    display: flex; 
    justify-content: center; 
    align-items: center;
    text-align: center;
  }

  .intro-about:hover{
    background-color: var(--wafer);
    transform: rotate(-2deg) scale(1.1);

  }
  
  .about-text {
    font-family: 'VT323', monospace; 
    font-size: 30px;
    line-height: 1.5;
  }
  
  .study-about {
    background-color: white;
    width: 1000px;             
    height: 200px;
    padding: 10px;            
    position: absolute;        
    top: 60px;                
    left: 300px;              
    margin: 120px auto; 
    border: 4px solid var(--emperor);
    box-shadow: 8px 8px 0px black;
    font-family: 'VT323', monospace;
    transition: all 0.2s ease;
  
  }
  
  .study-about-heading {
    font-family: 'Silkscreen', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .study-about-text {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }

  .study-about:hover {
    background-color: var(--wafer);
    transform: rotate(-2deg) scale(1.1);
  }
  
  
  .hobbies-about {
    background-color: white;
    width: 1000px;
    min-height: 200px;
    padding: 10px;
    position: absolute;
    top: 440px;
    left: 820px;
    transform: translateX(-50%);
    border: 4px solid var(--emperor);
    box-shadow: 8px 8px 0px black;
    font-family: 'VT323', monospace;
    transition: all 0.2s ease;
  }
  
  .hobbies-about:hover {
    background-color: var(--wafer);
    transform: translateX(-50%) rotate(-2deg) scale(1.1);
  }
  
  .hobbies-about-heading {
    font-family: 'Silkscreen', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .hobbies-about-text {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  
  .heart1-image {
    width: 200px;
    position: fixed;    
    top: 100px;        
    right: 20px;         
    z-index: 1000;      
    transition: all 0.3s ease-in-out;
    transform: rotate(4deg); 
  }
  
  .heart1-image:hover{
    transform: rotate(0deg) scale(1.1);
  }

  .heart2-image {
    width: 200px;
    position: fixed;     
    bottom: 5px;        
    left: 24px;          
    z-index: 1000;       
    transition: all 0.3s ease-in-out;
    transform: rotate(-10deg);
  }
  
  .heart2-image:hover{
    transform: rotate(0deg) scale(1.1);
  }