/* Font Import */
@font-face {
    font-family: "Graviton";
    src: url("../assets/fonts/graviton_-_estrictamedium-webfont.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Graviton";
    src: url("../assets/fonts/Graviton_EstrictaBold.woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Graviton";
    src: url("../assets/fonts/GravitonEstrictaBlack.woff2");
    font-weight: 900;
    font-display: swap;
}

/* resets necessarios */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    box-sizing: border-box;
}

:root {
    line-height: 1.15;
    /* a cada 1rem será considera 10px */
    font-size: 62.5%;
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    background: #fbfcff;
    color: #182d45;
}

h1,
h2,
h3 {
    font-family: "Graviton", "Roboto", "Arial", sans-serif;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}
