@font-face {
    font-family: CircularStd;
    src: url(./fonts/CircularStd-Book.otf);
}
  
@font-face {
    font-family: CircularStdBold;
    src: url(./fonts/CircularStd-Bold.otf);
}

:root {
    --color-bg: #E94A34;
    --color-white: #ffffff;
}

body {
    padding: 0; 
    margin: 0;
    background-color: var(--color-bg);
}

h1, h5, p {
    color: var(--color-white);
    text-align: center;
}

h1, h5 {
    font-family: CircularStdBold, sans-serif;
}

h1 {
    font-size: 140px; 
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; 
    background-clip: text; 
    mix-blend-mode: screen; 
    background-image: url(img/clip.png); 
    background-position: center;
    color: #fff;
}

h5 {
    font-size: 22px;
}

p {
    font-family: CircularStd, sans-serif;
}

.wrapper {
    min-height: 90vh;
    height: 100%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
}

@media only screen and (max-width: 900px) {
    h1 {
        font-size: 90px;
    }
}