<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  background: #000;
  background-image: url('./assets/pattern.png');
  backdrop-filter: blur(10px);
  color: #FFF;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 700px;
  padding: 1rem;
  gap: 2rem;
}

header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  margin: 0.375rem;
}

.content span {
  line-height: 1.6
}
.whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
  width: 100%;
  border-radius: 50px;
  background: #FFF;
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  border: 0;
  gap: 0.5rem
}

.whatsapp:hover {
  filter: brightness(0.9)
}

.whatsapp img {
  width: 20px;
  height: 20px;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.icon img {
  width: 28px;
  height: 28px;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  padding: 2rem;
  align-items: center;
  gap: 1rem;
}

header &gt; .logo {
  width: 80px;
  height: 80px;
}

.video {
  width: 100%;
  max-width: 1080px;
  padding: 0 2rem;
  margin: 0 auto;
}

.video iframe {
  width: 100%;
  height: 100%;
}</pre></body></html>