:root {
    --primary: #0f0f0f;
}

@font-face {
    font-family: 'Roboto';
    src: url(/assets/fonts/roboto/roboto-light.ttf);
}

* {
    box-sizing: border-box;
    font-family: 'Roboto';
}

body {
    display: flex;
    background: var(--primary);
    padding: 0;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    align-items: start;
    overflow: hidden;
}

.-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;

    .-boxed {
        width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
        @media(max-width: 1200px){
            width: 100%;
        }
    }
}