canvas {
  width: 100%;
}

body {
  font-family: 'Alatsi', sans-serif;
  margin: 0;
  overflow: auto; /* Change from hidden to auto to allow scrolling */
  background: black;
}

.title {
  font-size: 10vw;
  color: white;
  font-family: "Truculenta", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  visibility: hidden;
}

.title-small {
  font-size: 2vw; /* Smaller font size for non-homepage titles */
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-family: "Truculenta", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  visibility: hidden;
}

.blur-box {
  background: rgba(255, 255, 255, 0.4); /* Adjust the alpha value as needed */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
  border-radius: 20px;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.title-container-top {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.menu-container {
  display: flex;
  justify-content: flex-end; /* This will right justify the menu items */
  align-items: center; /* This will vertically center the menu items */
  position: absolute;
  top: 20px; /* This positions the menu container at the top of the page */
  right: 20px; /* This positions the menu container at the right of the page */
  /* height: 10; Adjust this value to change the height of the menu container */
  padding: 20px 20px; /* This adds some padding on the left and right of the menu container */
}

.menu-container a {
  text-decoration: none;
  color: white;
  margin-left: 30px;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; /* Add a black shadow to the text */
  cursor: pointer;
}

.menu-container img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-right: 20px;
  cursor: pointer;
}

/* New styles for the privacy policy container */
.privacy-policy-container {
  max-width: 800px;
  margin: 150px auto; /* Center the container and add top margin */
  padding: 20px;
  background: white; /* Set background to white for readability */
  color: black; /* Set text color to black */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif; /* Use a readable font */
}

.privacy-policy-container h1, .privacy-policy-container h2 {
  color: #333;
}

.privacy-policy-container p {
  color: #666;
  line-height: 1.6;
}

/* Styles for the clickable title link */
.title-link {
  text-decoration: none;
}

.title-link:hover .title,
.title-link:hover .title-small {
  text-decoration: underline;
}