@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html, body {
    padding: 0;
    margin: 0;
    font-size: 100%;
    scroll-behavior: smooth;
    font-family: "Noto Sans", sans-serif;
    color: #333;
}

@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: 85%;
    }
}


@media screen and (max-width: 768px) {

    /*resize body rem */
    html, body {
        font-size: 76%;
    }
}

@media screen and (max-width: 480px) {

    /*resize body rem */
    html, body {
        font-size: 82%;
    }
}


/* Style reset */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
select {
  text-transform: none;
}

textarea {
  overflow: auto;
}