:root {
    --background-color : #1E331A;
    --accent-color: #5f9a13;
    --action-color : #e01a4f;
}

::-webkit-scrollbar {
    display: none;
}

* {
    font-family: 'Roboto', 'PT sans', sans-serif;
    box-sizing: border-box;
    color: #333;
}

html, body {
    height: 100dvh;
    width: 100dvw;
}

html, body, main, footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body {
    background-color: #e2e2e2;
    background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
            linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #111;
}

main {
    justify-content: start;

    width: 95%;
    height: 95%;

    overflow: auto;
    scroll-snap-type: y mandatory;
    margin : 5px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 100%;
    padding : 15px;
}

hr {
    width: 50%;
}

a {
    text-decoration: none;
}

a:hover
{
    color: var(--action-color);
}

.logo
{
    width: 25px;
    height: 25px;
}

.accentuated {
    color: var(--accent-color);
}