:root {
    --primary-bg: #fff;
    --primary-text: #353d49;
    --secondary-text: #252627;
    --link-color: #879094;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --borders: #555;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-bg: #fff;
        --primary-text: #353d49;
        --primary-text: #252627;
        --link-color: #9fb1b6;
    }

    img {
        opacity: 90%;
    }
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }