/* Base styles: resets, body, typography, helpers */
:root {
    --primary-color: #ff3333;
    --secondary-color: #36454f;
    --background-color: #000;
    --text-color: #fff;
    --accent-color: #4caf50;
    --error-color: #ff3333;
    --link-hover-bg: #36454f;
    --link-hover-color: #000;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1, h2 {
    color: var(--text-color);
    text-align: center;
}

footer {
    color: var(--text-color);
    text-align: center;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    max-width: 100%;
    height: auto;
}

.text {
    color: var(--text-color);
    font-size: 30px;
}

.video-text {
    color: var(--text-color);
    font-size: 15px;
}
