<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #121212;
}

/* Cover Section */
.cover {
  position: relative;
  text-align: center;
  height: 100vh;
  width: 100%;
  background: url('https://res.cloudinary.com/doxiillcn/image/upload/v1732356760/Guy%20Dahan/guy-9_c37hrq.jpg') no-repeat center/cover;
  background-position:top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Logo Styles */
.logo {
    position: fixed; /* Allows placement on top of the cover */
    top: 20px;          /* Adjust vertical position */
    left: 50%;          /* Center horizontally */
    transform: translateX(-50%); /* Center alignment adjustment */
    width: 200px;       /* Adjust the size of the logo */
    height: auto;       /* Maintain aspect ratio */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }

.logo-text {
    text-indent: -9999px; /* Hides the text visually */
    margin: 0 auto;
    z-index: 99;
  }

.logo-t {
    position: relative;
    top: 80px;
    width: 60%;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 99;
}

.cover h1 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 99;
}

.cover p {
  font-size: 1.2rem;
  margin: 10px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 99;
}

.cover small {
    font-size: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 99;
}

/* Social Links */
.social-links {
  margin-top: 20px;
  z-index: 99;
}

.social-links a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #000000; /* Spotify green */
  transform: scale(1.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #1e1e1e;
  position: relative;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .logo {
      width: 200px; /* Smaller logo size for mobile */
      top: 20px;
    }
  }
</pre></body></html>