/* A simple CSS Reset using the universal selector */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global body styles */
body {
  font-family: sans-serif;
  color: #333;
  background-color: #423f3f;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Global link styles */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Global H1 styles */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h6 {
  font-size: 1.2rem;
  color: antiquewhite;
  text-align: center;
  font-weight: normal;
}
