@import url('partials/navbar.css');
@import url('partials/footer.css');
@import url('media.css');

html, body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden;
    user-select: none;
    min-height: 100vh;
    height: fit-content;
    background: black;
    color: white;
    width: 100vw;
    padding: 0;
    margin: 0;
}

a.btn-color,
a.btn-mono, a.link {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

a.link:hover {
    text-decoration: underline;
} a.link { color: white; }

a.btn-color {
    color: black;
    background: #c9f321;
    padding: 10px 20px;
    border-radius: 5px;
}

a.btn-mono {
    color: black;
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
}

h1, h2, h3,
h4, h5, h6, p {
    padding: 0;
    margin: 0;
}
