@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: 'Newtown';
    src: url('/fonts/newtow_b-webfont.woff2') format('woff2'),
         url('/fonts/newtow_b-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;

}

@font-face {
    font-family: 'Newtown';
    src: url('/fonts/newtowbi-webfont.woff2') format('woff2'),
         url('/fonts/newtowbi-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;

}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.6vw;
}

@media only screen and (min-height: 50vw) {
    body {
        font-size: 2vw;
    }
}

@media only screen and (min-height: 100vw) {
    body {
        font-size: 3.2vw;
    }
}

h1 {
    font-family: 'Newtown', sans-serif;
    font-weight: bold;
    font-size: 4vw;
    letter-spacing: 0.2vw;
    line-height: 100%;
}

@media only screen and (min-height: 50vw) {
    h1 {
        font-size: 4.6vw;
        letter-spacing: 0.23vw
    }
}

h2 {
    font-weight: 700;
    font-size: 2.5vw;
}

strong {
    font-weight: bold;
}

.note {
    font-size: 1.4vw;
}

@media only screen and (min-height: 50vw) {
    .note {
        font-size: 1.6vw;
    }
}

ul {
    list-style-position: inside;
}