<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media only screen and (max-width: 768px) {
  .desktop-only {
    display:none;
  }
  .mobile-only {
    display:block;
  }
  .sticky-div {
    position: relative;
    top: auto;
    left: auto;
    width: 100%; /* Adjust this value based on your layout */
    z-index: 1000; /* Ensure it is above other elements */
    background-color: white; /* Optional: To ensure background color remains consistent */
  }
  .main-content {
    padding: 20px;
    margin-left: 0px;
  }
  #logo {
    width: 40%;
    margin-bottom: 50px;
  }
}</pre></body></html>