
:root {
    --fuzzy-wuzzy-brown: #c55e5e;
    --japonica: #dc7b66;
    --wafer: #decfcc;
    --can-can: #d59497;
    --emperor: #564b47;
    --tonys-pink: #ecac97;
    --contessa: #c97778;
    --mojo: #c34240;
}
  
body {
    background-color: #ddcfcc; 
    margin: 0;  
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
  }
  

  .center-box {
    background-color: white; 
    width: 400px;
    height: 50px;
    padding: 20px;
    display: flex;              
    justify-content: center;    
    align-items: center;         
    text-align: center;         
    border: 2px solid var(--emperor);
    font-size: 20px;
    margin-top: 20px;
    font-family: 'Silkscreen', sans-serif;
    box-shadow: 4px 4px 0px black;
    transition: all 0.2s ease;

  }

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

  }

  .button-container {
    position: absolute;
    top: 4px;
  }
  
  button {
    margin: 40px;
    background-color: var(--contessa);
    color: white;
    font-family: 'Silkscreen', sans-serif;
    font-size: 36px;
    border: none;
    padding: 26px 56px;
    box-shadow: 8px 8px 0px black;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  button:hover {
    background-color: var(--fuzzy-wuzzy-brown);
    transform: rotate(-3deg) scale(1.1);
  }
  
  button:active {
    transform: translateY(4px); 
    box-shadow: 2px 2px 0px black;

  }

 