* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #1A6DB5 0%, #1254A0 100%);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#loader img {
  width: clamp(220px, 35vw, 480px);
  object-fit: contain;
}

#loader .pro-text {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 600;
  color: white;
  letter-spacing: 5px;
  line-height: 1;
  padding-left: clamp(75px, 30%, 142px);
  margin-top: 2px;
}