html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Reset some default styles */
body, h1, p {
  margin: 0;
  padding: 0;
}

.click-logo {
  /* max-width: 90%; */
  width: 400px;
  height: auto;
  font-family: 'PoetsenOne';
  font-size: 120px;
  color: #FFFFFF;
}

/* Body styling */
body {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400; /* You can change this to any value between 100–900 */
  background-color: #29e0e0;
  color: #333;
  text-align: center;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
}

/* Container */
.container {
  padding: 20px;
}

/* Store links */
.store-links {
  margin-top: 60px;
}

.store-links a {
  display: inline-block;
  margin: 0 10px;
}

.store-links img {
  width: 160px;
  height: auto;
  transition: transform 0.2s;
}

.store-links img:hover {
  transform: scale(1.05);
}

@font-face {
  font-family: 'Fredoka';
  src: url('assets/fonts/Fredoka-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900; /* Supports font-weight from 100 to 900 */
  font-stretch: 75% 125%; /* Optional: if width variation is supported */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PoetsenOne';
  src: url('assets/fonts/PoetsenOne-Regular.ttf') format('truetype');
  font-weight: 100 900; /* Supports font-weight from 100 to 900 */
  font-stretch: 75% 125%; /* Optional: if width variation is supported */
  font-style: normal;
  font-display: swap;
}