:root {
    --Orange: #f98008;
    --Blue: #0a496b;
    --transition: 300ms;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Roboto:wght@400;500;900&display=swap');

*,*::before,*::after {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

html {
    font-size: .625em;
    scroll-behavior: smooth;
}

body {
    background-color: #f2f2f2;
    color: rgb(34, 34, 34);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--Orange);
}

img, video, iframe {
    width : 100%;
    display: block;
    margin-bottom: 0;
    border-radius: 5px;
}

a {
    color: inherit;
    display: inline-block;
    font-size: 1.6em;
    padding: .625em;
    text-decoration: none;
}

hr {
    border: solid rgb(226, 226, 226) 1px;
}

/* lIBRARY´S */

.paragraph {
    font-size : 1.6em;
    line-height: 1.5em;
    font-weight: 400;
    text-align: justify;
}

.module {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hr {
    padding-top: 65px;
    padding-bottom: 65px;
}

.important {
    font-weight : 400;
}