* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f5f9;
  margin: 10px;
  font-size: 17px;
  position: relative;
}

.test-about-page {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

h1 {
  text-transform: uppercase;
  position: relative;
  text-align: center;
  margin: 2rem auto;
  font-size: 1.5rem;
  color: #333;
}

h2 {
    margin-bottom: 7px;
}

.navbar {
  position: absolute;
  top: 2px;
}

.navbar ul{
  display: flex;
  gap: 10px;
}

.navbar ul li a {
  color: black;
}

.navbar ul li a:hover {
  color: hsl(51, 100%, 49%);
}