body {
    background-color: #F2F2F2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.banner {
    background-image: url('images/chill-roommate/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-licor {
    color: #0069b4;
}

.text-brightblue {
  color: #00A7E0;
}

.bg-licor {
    background-color: #0069b4;
}

.bg-darkblue {
  background-color: #102c52;
}

.back-to-top-wrapper {
    margin-top: 2rem; 
  }

  .button-licor {
    padding: 8px 16px;
    color: #0069b4;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    transition: background-color 0.3s ease;
    font-family: sans-serif;
}

.button-licor:hover {
    color: #005794;
  }

.pb-design {
  padding-bottom: .85rem;
}

#imageModal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px); 
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
  }
  
  #imageModal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }
  
  #imageModal.show {
    display: flex;
  }
  
  .link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    background: #00A7E0; 
    border: 3px solid #0085b2;             
    border-radius: 2rem;                   
    padding: 0.25rem 1rem;                 
    box-shadow: 3px 3px 0 #0085b2;     
    display: inline-block;                 
    color: #ffffff;                        
    font-weight: bold;                     
    text-decoration: none;                 
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
  }
  
  .link:hover {
    transform: scale(0.97);
  
  }
  
  .link:active {
    transform: translate(3px, 3px); 
    box-shadow: 0px 0px 0 #232223; 
    background: #00A7E0;  
    
  }