:root {
    --background: #191b25;
    --secondary-background: #181818;
    --text: #cccccc;
    --secondary: #c543af;
    --tertiary: #80db8c;
    --left-margin: calc((100vw - 1000px) / 2);
    --text-size: 20px;
}

body {
    margin: 0;
    background-color: var(--background);
    font-family: monospace;
    color: var(--text);
    font-size: var(--text-size);
}

.secondary, a {
    color: var(--secondary);
}

.content {
    margin-left: var(--left-margin);
    max-width: 1000px;
    min-height: 100vh;
}

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:1100px) {
    :root {
        --left-margin: 20px;
    }
}