body {
margin: 0;
font-family: sans-serif;
background-color: #000;
color: rgb(212, 212, 212);
text-align: left;
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}

.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px 120px;
}

.container a {
color: rgb(212, 212, 212);
font-weight: 500;
text-decoration: none;
transition: all 0.2s ease-in-out;
}

.container a:hover {
    text-decoration: underline;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: block;
    margin: 0 auto 20px;
    cursor: pointer;
}
  
h1, h2, h3 {
    color: rgb(212, 212, 212);
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
font-size: 1.8rem;
margin-top: 40px;
}

h3 {
font-size: 1.4rem;
margin-top: 24px;
}

p {
margin: 12px 0;
}

ul {
margin: 12px 0 12px 20px;
}

li {
margin-bottom: 8px;
}

strong {
color: rgb(212, 212, 212);
}

blockquote {
margin: 16px 0;
padding-left: 20px;
border-left: 4px solid rgb(150, 150, 150);
color: rgb(212, 212, 212);
}

footer {
position: fixed;
bottom: 20pt;
left: 25px;
right: 25px;
display: flex;
justify-content: space-between;
align-items: center;
}

footer a {
font-family: "Geist", "Geist Placeholder", sans-serif;
font-weight: 600;
font-size: 14px;
letter-spacing: -0.4px;
line-height: 120%;
color: rgb(115, 115, 115);
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
color: rgb(180, 180, 180);
}

footer div a {
margin-left: 16px;
}
