  html, body {
    pointer-events: none;
    font-family: Helvetica;
    margin: 0;
    padding: 0;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  #content-container {
    pointer-events: none;
    max-width: 90%;
    margin: 20px auto;
  }

  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }

  .loadmorebtn {
    width: 60px;
    height: 60px;
    font-size: 25px;
    font-weight: bold;
    color: black;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    pointer-events: all;
  }

  .loadmorebtn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }

  .item-container {
    pointer-events: all;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .item-container:last-child {
    border-bottom: none;
  }

  p {
    font-family: Helvetica;
    font-size: 18px;
    color: white;
    margin: 10px 0;
    word-break: break-word;
    line-height: 1.5;
  }

  iframe, img {
    max-width: 100%;
    height: 400px;
    margin-bottom: 10px;
  }

  @media (max-width: 780px) {
    .loadmorebtn {
      margin-bottom: 25px;
    }

	iframe, img {
		height: auto;
	}
  }

  @media (max-width: 480px) {
    #content-container {
      padding: 10px;
    }

	iframe, img {
		height: auto;
	}
  }