<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero {
    position: relative;
    height: 100vh;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .hero h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 4rem;
    text-align: center;
  }
  .section {
    padding: 4rem 0;
    color: white;
  }

  .section h2 {
    color: white;
  }

  .section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .contact-section {
    background: linear-gradient(to right, #ffbb2b, #ff9e00);
  }

.button-contact {
    display: grid;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #ffbb2b, #ff9e00);
    padding: 10px;
    border-radius: 5px;
    transition: all .3s ease;
}

.button-contact:hover {
    transform: translateY(-5px);
    color: white;
}</pre></body></html>