/*X-Small devices (portrait phones, less than 576px)*/
/*No media query for `xs` since this is the default in Bootstrap*/

@font-face {
    font-family: 'lemonmilk';
    src: url('fonts/lemonmilklight.ttf') format('truetype'),
         url('fonts/lemonmilklight.otf') format('opentype'),
         url('fonts/lemonmilklight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
}

h5{
    font-family: lemonmilk;
}

a{
    font-family: lemonmilk;
}

.word{
    font-size: 50px;
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .word{
        font-size: 60px;
    }

    .link{
        font-size: 30px;
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .word{
        font-size: 80px;
    }

    .link{
        font-size: 30px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .word{
        font-size: 100px;
    }

    .link{
        font-size: 30px;
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .word{
        font-size: 120px;
    }

    .link{
        font-size: 30px;
    }
}

 /*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .word{
        font-size: 160px;
    }

    .link{
        font-size: 30px;
    }
}