      .outer-image-container {
        width: 100%;
        min-height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
      }

      .image-container {
        position: relative;
        width: 300px;
        height: 250px;
      }

      .image-container img {
        width: 100%;
        height: 100%;
        display: block;
      }

      .leftbar-images {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-shadow: 1px 1px 4px black;
      }
      
      .links-mainpage-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 30px;
      }
      
      .links-mainpage-item {
        width: 70%;
        min-height: 50px;
        max-width: 300px;
        display: flex;
        align-items: center;
        padding: 0 1.5rem;
        border-radius: 5px;
        font-size: 1.1rem;
        font-weight: bold;
        transition: all 0.3s ease;
      }
      
      .links-mainpage-item a, summary {
        color: white;
        text-decoration: none;
      }
      
      .links-mainpage-item a:hover {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 0 10px;
        text-decoration: none;
      }
      
      .button-on-right {
        display: block;
        float: right;
        margin-left: 10px;
      }