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

.contact-boxes {
    display: flex;               
    justify-content: center;     
    gap: 40px;                    
    margin-top: 300px;           
  }
  
  .contact-box {
    background-color: white;
    border: 4px solid var(--emperor);
    box-shadow: 8px 8px 0px black;
    padding: 12px 12px;
    font-family: 'Silkscreen', sans-serif;
    text-decoration: none; 
    font-size: 20px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    color: black;
  }
  
  
  .contact-box:hover {
    background-color: var(--contessa);
    transform: rotate(-3deg) scale(1.1);
  }
  
  contact-boxes:active {
    transform: translateY(8px); 
    box-shadow: 4px 4px 0px black; 
  }


    
  .center-box-contact {
    border: 4px solid var(--emperor);
    position: absolute;
    top: 200px;
    background-color: white; 
    width: 1200px;
    height: 60px;
    padding: 40px;
    display: flex;              
    justify-content: center;    
    align-items: center;         
    text-align: center;         
    font-size: 40px;
    margin-top: 40px;
    font-family: 'Silkscreen', sans-serif;
    box-shadow: 8px 8px 0px black;
    transition: all 0.2s ease;

  }

  .center-box-contact:hover{
    background-color: var(--wafer);
    transform: rotate(-1deg) scale(1.1);

  }


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


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

  .cat2-image {
    width: 200px;
    position: fixed;     
    top: 180px;        
    left: 40px;          
    z-index: 1000;      
    transition: all 0.3s ease-in-out;
    transform: rotate(-4deg); 
  }
  
  .cat2-image:hover{
    transform: rotate(0deg) scale(1.1);
  }