:root {
    --nescedia-color: #D69358;
}

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

::selection {
    color: var(--nescedia-color);
    background: rgba(55, 71, 79, 0.66);
}

::-webkit-scrollbar {
    width: 0.4em;
}

::-webkit-scrollbar-track {
    background-color: #263238;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

a {
    color: var(--nescedia-color);
    text-decoration: none;
    font-weight: bold;
}

.center-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}