@import "dark.css";

* {
    line-height: 2;
}

body {
    color: black;
    background: white;
    height: 100vh;
    margin: 0;
    font-family: monospace;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    gap: 2rem;

    padding: 1rem;
    padding-bottom: 3rem;

    box-sizing: border-box;
    position: relative;
}

a {
    color: black;
    text-decoration: underline dotted;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #666;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-align: center;
}

.light {
    color: #666;
}

.separator {
    color: #bbb;
}

.hidden {
    display: none;
}

.no-underline {
    text-decoration: none;
}

.no-underline:hover {
    text-decoration: none;
}

.tag {
    color: #666;
    font-size: 0.8rem;
    font-weight: normal;
    padding: 1px 8px;
    border-radius: 4px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.dark-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: monospace;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.dark-toggle:hover {
    opacity: 0.7;
}

.icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    body {
        height: auto;
        padding: 1.5rem;
        padding-bottom: 2.5rem;
        font-size: 0.9rem;
        overflow: auto;
        margin-bottom: 3rem;

    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}
