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

html {
	font-size: 16px;
}

body {
  background-color: rgb(10, 10, 10);

  color: white;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

h1 {
	font-size: 5rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

ul {
  list-style: none;
}

li {
	font-size: 2rem;
	font-weight: 400;
	transition: transform 0.2s ease;
}

li:hover {
	transform: scale(1.5);
}

a {
  color: #e37cb1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  text-decoration: underline;
  opacity: 0.9;
}
