:root {
    --bg-color: #222222;
    --text-color: #e6e6e6;
    --font-heading: 'Open Sans', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

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

a, a:visited{
    color: var(--text-color);
}
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.watermark {
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 1;
    display: flex;
    align-items: center;
}

.watermark img {
    max-height: 100vh;
    width: auto;
}

.watermark-left {
    left: 0;
}

.watermark-right {
    right: 0;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.logo {
    margin-bottom: 30px;
}

.logo svg {
    width: 120px;
    height: auto;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .watermark-right {
        display: none;
    }
}
