@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

body {
  background-color: black;
  color: white;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

.logo-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 16px;
  margin-bottom: 20px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: white;
  border: none;
  padding: 14px 20px; /* Adjust button padding */
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 16px; /* Adjust button text size */
}

.button:hover {
  background-color: #4d4d4d;
}

.button i {
  margin-right: 5px;
}