/*  Reset */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul, li{
    list-style-type: none;
}
iframe{
    border: 0;
}
input {
    border-radius: 0;
    -webkit-appearance: none;
}
:focus{
    border: 0px;
    outline: none;
}


/*  Typography */

@font-face {
    font-family: 'IBM regular';
    src: url('fonts/jesolonew-regular.woff2') format('woff2'),
         url('fonts/jesolonew-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  	font-display: fallback; 
}
@font-face {
    font-family: 'IBM book';
    src: url('fonts/jesolonew-book.woff2') format('woff2'),
         url('fonts/jesolonew-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  	font-display: fallback; 
}
body, html, h1, h2, h3, ::placeholder, input, button, small{
    font-family: 'IBM regular', Univers, Arial, Helvetica, sans-serif;
    letter-spacing: 0.0em;
    font-size: 2.8vw;
    line-height: 1.25em;
    font-weight: normal;
    font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-spacing: -2px;
	color: black;
}
a{
	color: initial;
}
a:hover{
	color: initial;
	text-decoration: none;
}
p{
    padding: 0;
    margin: 0;
}
/*  Common */
:root {
    --red: rgb(40, 40, 40);
    --grey: rgb(0, 150, 250);
}
h1{
    display: none;
}
body{
    background: rgb(250, 250, 250);
}
p{
    background: linear-gradient(90deg,var(--grey) 20%,var(--red) 40%,var(--red) 60%,var(--grey) 80%);
    background-size: 200% 100%;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: highlight 8s linear infinite;
}

@-webkit-keyframes highlight {
    0% {
        background-position:-20%
    }
    to {
        background-position:180%
    }
}

@keyframes highlight {
    0% {
        background-position:-20%
    }
    to {
        background-position:180%
    }
}

.wrapper{
    display: grid;
    grid-template-columns: 1fr;
}
.wrapper div{
    padding: 2em 2.25em;
}

/*  Media Query */
@media only screen and (max-width: 768px) {
    body, html, h1, h2, h3, ::placeholder, input, button, small{
        font-size: 4.5vw;
        line-height: 1.25em;
    }
    .wrapper{
        display: grid;
        grid-template-columns: 1fr;
    }
 }
