@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Condensed:wght@300;400;500;700;900&display=swap');


* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html, body {
    padding: 0;
    margin: 0;
    font-size: 100%;
    color: #252525;
    background-color: #fff;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 1200px) {

    /*resize body rem */
    html, body {
        font-size: 100%;
    }
}


@media screen and (max-width: 960px) {

    /*resize body rem */
    html, body {
        font-size: 95%;
    }
}


@media screen and (max-width: 768px) {

    /*resize body rem */
    html, body {
        font-size: 85%;
    }
}

@media screen and (max-width: 480px) {

    /*resize body rem */
    html, body {
        font-size: 95%;
    }
}


/* Style reset */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
select {
  text-transform: none;
}

textarea {
  overflow: auto;
}