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

body {
  margin: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  /* background: linear-gradient(to right, #024040, #015353); */
  background-color: #ffffff;
  color: #ffffff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.button {
  background-color: #343a40;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

.button i {
  margin-right: 0.5rem;
}

.button:hover {
  background-color: #007BFF;
  transition: 0.3s;
}
