@charset "utf-8";
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:wght@400;500;700;900&display=swap');
/* general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}
/* container */
.container {
    width: 85%;
    margin: 0 auto;
}
@media screen and (max-width: 830px) {
    .container {
        width: 90%;
    }
}
/* root */
:root {
    --color-light: #fff;
    --color-dark: #1B1F24;
    --color-video: #46515e;
    --color-green: rgb(8, 188, 47);
}
/* Link */
a {
    text-decoration: none;
}
/* body */
body {
    background-color: var(--color-dark);
}