<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap');

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(#2b1055, #7597de);
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 40px 100px;
  z-index: 1000;
}

header .logo {
  position: relative;
  font-weight: 700;
  color :white;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.6s;
}

header.sticky {
  padding: 5px 100px;
  background: #f8f8f8;
}

header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

header ul il {
  position: relative;
  list-style: none;
}

header ul li a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  color: white;
  letter-spacing: 2px;
  font-weight: 500px;
  transition: 0.5s;
  padding: 6px 15px;
  border-radius: 20px;
}

header ul li a:hover,
header ul li a.active {
  background: #ffffff;
  color: #2b1055;
}

header.sticky .logo,
header.sticky ul li a {
  color: #000000;
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  width: 60%;
  max-width: 500px;
}

section .wrapper .img-wrapper {
  width: 300px;
}

section .wrapper .img-wrapper #image {
  width: 100%;
}

section .wrapper .header {
  padding: 20px;
  display: flex;
  font-size: 30px;
}

section .wrapper .header #number {
  margin-right: 15px;
  color: black;
}

section .wrapper .header #name {
  text-transform: capitalize;
  color: black;
}

section .wrapper #button {
  background-color: #ff7a22;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

section .wrapper #button:hover {
  transform: translateY(-2px);
  background-color: #ff8839;
}

section .wrapper #button:active {
  transform: translateY(2px);
  background-color: #ff7a22;
}</pre></body></html>