@import 'colors.css';
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;400;700&display=swap');

*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Dosis', sans-serif;
    user-select: none;
}

button {
    outline: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 100%;
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding-left: 300px;
    background-color: var(--background);
}

.body.scroll-desactive {
    overflow: hidden;
}

.subtitle {
    color: var(--primary-color);
    font-size: 48px;
}

.sections {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 970px) {
    .body {
        padding-left: 0;
    }

    .sections {
        gap: 20px;
    }
}