@import url('./flex.css');
@import url('./fonts.css');
@import url('./text.css');

:root {
    /* Colours */
    --dark-red: #420404;
    --light: #b4a0a0;    
    --light-red: #b37575;
    --grey: #503636;
    /* Values */
    --case-size: 1.25em;
    /* Items */
    --background: var(--dark-red);
    --text: var(--light);
}

::selection  {
    color: var(--background);
    background: var(--text);
}

html, body {
    background-color: var(--background);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Volkhov';
    color: var(--light);
}

main {
    width: calc(100% - 4em);
    height: 100%;

    padding: 2em;
    
    background: url('../assets/commune.jpg') no-repeat;
    background-position: 20% 0;
    background-size: cover;
    
    text-align: center;
    justify-content: center;
}

#social {
    margin-top: 1em;
}

#social * {
    margin-right: .25em;
}

#last-social {
    width: 2em;
    margin-right: 0;
}

#copyright {
    line-height: 16px;
}

@media screen and (orientation: portrait), (max-width: 800px) {
    main {
        width: calc(100% - 4em);
        height: 100%;
    }
}


#gavroche {
    width: 2em;
    height: 2em;
    margin-top: -0.450em;
    background: url('../assets/gavroche.png') no-repeat;
    background-size: 2em;
}

#gavroche:hover {
    background: url('../assets/gavroche\ hover.png') no-repeat;
    background-size: 2em;
}