/* Import Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #2e2e2e; /* dark grey */
  color: white;
  margin: 20px;
}

/* Remove list bullets and spacing */
ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

/* Style buttons inside links */
a button {
  background-color: transparent; /* no color */
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

a button:hover {
  background-color: rgba(255, 255, 255, 0.1); /* subtle hover effect */
}
