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

body {
  font-family: Arial, sans-serif;
  background-color: red, white;
  background-size: cover; 
  background-repeat: no-repeat; 
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.title {
  font-size: 2em;
  font-weight: bold;
  margin-top: 20px;
  color: #333;
  text-align: center;
}

.image-container img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.discord-box {
  padding: 15px;
  background-color: #7289da;
  color: white;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.discord-box:hover {
  background-color: #5a6ebc;
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 90%;
  max-width: 800px;
  margin-top: 20px;
}

.box {
  background-color: white;
  width: 45%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.box.visible {
  opacity: 1;
  transform: translateY(0);
}

.chart-container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.chart-container.visible {
  opacity: 1;
  transform: translateY(0);
}

canvas {
  width: 100%;
  height: 400px;
}
