html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111; /* Dark background for contrast */
    color: white;
  }
  
  .image-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111; /* Matches the page background */
  }
  
  .portrait-image {
    width: auto;
    height: 100%;
    object-fit: fill;
    opacity: 0.65; /* Slightly reduce opacity for blending */
    border: 1px solid #111;
    border-radius: 15px;
  }
  
  .text-content {
    padding: 20px;
  }
  

  .join-discord-btn {
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .join-discord-btn:hover {
    background-color: #ccc; /* Light gray on hover */
    color: black;
  }
  
  
  /* Media query to hide the image on smaller screens */
  @media (max-width: 768px) {
    .image-container {
      display: none;
    }
  }
  