/* Basic page reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
}

.logo-container {
  text-align: center;
  margin-bottom: 5px;
}

.logo {
  width: 150px; /* Adjust the size */
  height: 78px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(10, 50px); /* 10 columns with 50px width */
  grid-gap: 10px; /* space between dots */
  justify-content: center;
}

.dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3498db;
  transition: background-color 0.3s;
}

.dot:hover {
  background-color: #e74c3c;
}
