
@import "base.css";

/*--------------------------------------
    Click Screen
--------------------------------------*/

.click-screen{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(164,235,141);
    background: linear-gradient(131deg, rgba(164,235,141,1) 18%, rgba(122,202,97,1) 74%);
}

.click-screen h2{
    color: white;
    font-size: 302px;
    margin-top: -20px;
    text-transform: uppercase;
}

.overlay{
    height: 100vh;
    width: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}

      /*
        --------------------------------------------------------
        Media Queries
        --------------------------------------------------------
        */


        @media screen and (min-width: 320px) {
            .click-screen h2{
                font-size: 160px;
            }
        }
    
        @media screen and (min-width: 580px) {
            .click-screen h2{
                font-size: 190px;
            }
        }
    
        @media screen and (min-width: 768px) and (max-width: 1024px) {
            .click-screen h2{
                font-size: 256px;
            }
        }
    
        @media screen and (min-width: 1024px) {
            .click-screen h2{
                font-size: 302px;
            }
        }