/* HTML5 Boilerplate Styles */

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #111;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0 0 1em 0;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline-offset: 2px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Forms */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    line-height: normal;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
    appearance: button;
}

button[disabled],
input[disabled] {
    cursor: default;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Accessibility */
:focus {
    outline: thin dotted;
}

::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Clearfix */
.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
}

.logo {
    color: #fff;
    font-family: "Red Hat Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(0.875rem, 2.5vw, 2rem);
    text-align: center;
    line-height: 1.8;
    white-space: nowrap;
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .logo {
        white-space: normal;
        word-break: break-all;
    }
}

