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

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: #262629;
  color: #e8d6c2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
}

.logo {
	width: 10rem;
	height: auto;
	margin: 0 auto 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  opacity: 0.7;
}

a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

a:hover::after {
  opacity: 1;
}
