@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

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

body {
    font-family: "DM Mono", monospace;
    background: #222535;
    color: #eedede;
}

header {
    background: #222535;
    border-bottom: 1px solid #eedede55;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
}

.logo {
    display: block;
    margin: 0 auto;
    height: 1.5rem;
}

main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 0;
}
h1 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    border-bottom: 1px solid #eedede55;
}
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eedede55;
}

ul a {
    font-size: 1.5rem;
    padding: 1rem 0;
    display: block;
    color: #eebbee;
    text-decoration: none;
}

ul a:hover::before,
ul a:focus::before {
    content: "> ";
}

.footer {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.75;
}
