body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #3498db, #9b59b6);
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.button,
.download-button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  height: 115px;
  width: 115px;
}

.button {
  background-color: #ff6666;
  color: white;
}

.download-button {
  background-color: #66ccff;
  color: white;
  width: 115px;
  height: 115px;
}

.button:hover,
.download-button:hover {
  background-color: #333;
}
