body {
    font-family: "Space Mono", monospace;
    color: rgb(236, 239, 245);
    user-select: none;
    background-color: #0a0a0a;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(40,40,60,0.3), transparent 70%);
  background-size: 40px 40px, 40px 40px, 100%;
}

h1, h2 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.main-content {
    height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}

button {
    background-color: rgb(236, 239, 245);
    font-family: "Archivo Black", sans-serif;
    color: #08090a;
    border-radius: 4%;
    margin: 10px;
    border: none;
}

nav {
    position: fixed;
    top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    color: white;
    width: 100%;
    max-height: 3rem;
    z-index: 9999;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: clamp(16px, 1vw, 24px);
    background: rgba(255, 255, 255, 1.25);
    background: linear-gradient(90deg, rgba(80, 80, 80, 0.5) 0%, rgba(0, 0, 0, 0) 25%);
    backdrop-filter: blur(5px);
}

nav > a {
    color: rgb(165, 165, 165);
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: rgb(235, 235, 235);
    text-decoration: underline;
    transform: scale(1.1);
}

.icon {
    transform: translate(0, 12%);
}

.content-area {
    margin-left: 4rem;
    margin-top: 9rem;
}

.card {
    display: flex;
    flex-direction: column;
    height: 16rem;
    background-color: #17181a69;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    max-width: 24rem;
    padding: 10px;
    text-align: center;
}

.tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px;
    gap: 2rem;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #08090a;
}