/* ROBOTO - REGULAR */

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: normal;
    font-style: normal;
    src: url(../assets/fonts/SourceSansPro-Regular.otf);
}

/* ROBOTO - REGULAR - ITALIC*/

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: normal;
    font-style: italic;
    src: url(../assets/fonts/SourceSansPro-It.otf);
}

/* ROBOTO - BOLD */

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: bold;
    font-style: normal;
    src: url(../assets/fonts/SourceSansPro-Bold.otf);
}

/* ROBOTO - BOLD - ITALIC */

@font-face {
    font-family: 'Source Sans Pro';
    font-weight: bold;
    font-style: italic;
    src: url(../assets/fonts/SourceSansPro-BoldIt.otf);
}

/* ROBOTO - BLACK */

@font-face {
    font-family: 'Source Sans Pro Black';
    font-style: normal;
    src: url(../assets/fonts/SourceSansPro-Black.otf);
}

/* ROBOTO - BLACK - ITALIC */

@font-face {
    font-family: 'Source Sans Pro Black';
    font-style: italic;
    src: url(../assets/fonts/SourceSansPro-BlackIt.otf);
}


/* */

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

a,
a:hover,
a:active,
button {
    display: inline;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

ul {
    list-style-type: none;
}

/* */

html,
body,
#root {
    margin: 0;
    height: 100%;
    min-height: 100%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Source Sans Pro';
    font-size: 1.6rem;
    color: #fff;
    line-height: 2.6rem;
}

body .btn-container {
    position: fixed;
    top: 1rem;
    left: 1rem;
}