@import url("https://fonts.googleapis.com/css?family=Comfortaa");

* {
    transition: all .3s ease;
}

body, html {
    color: var(--text-color);
    font-family: 'Comfortaa', Arial, Helvetica, sans-serif;
}

html {
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--bg);
}

.title {
    font-size: 30px;
    margin: 10px;
    margin-top: 70px;
    font-weight: 1000;
    text-shadow: 0 0 3px var(--text-color);
}

#iframe {
    width: 100%;
    border: none;
    height: 100%;
}

.center {
    text-align: center;
}