﻿/*  Extra large devices: Desktops and laptops*/
@media (min-width: 1200px) {


}

/* Large devices: Laptops*/
@media (min-width: 992px) and (max-width: 1199px) {

}

/*  Medium devices: Tablets */
@media (min-width: 768px) and (max-width: 991px) {

    #birthdayPhrase {
        font-size: 3rem;
    }
}

/*  Small devices: Small Tablets   */
@media (min-width: 576px) and (max-width: 767px) {

    #birthdayPhrase {
        font-size: 2rem;
    }
}

/*  Extra small device: Smartphones  */
@media (max-width: 575px) {

    #birthdayPhrase {
        font-size: 2rem;
    }
}
