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

body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'VT323', monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header-box {
    font-size: 80px;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
}

.url-box {
    display: flex;
    gap: 30px;
    font-size: 28px;
    letter-spacing: 2px;
}

.header-url {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.header-url:hover {
    color: #0ff;
}
