/******* GLOBAL ********/
body{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background:#ccc;
}
/******* Background ********/

#bg{
    width: 100%;
    height: 100%;
    background-image: url(../img/background.png);
    background-position:top;
    background-size: contain;
    background-repeat: repeat-x;
    position: relative;
}

/******* TYPE ********/
.text{
    font-family: "Futura", san-serif;
    position: absolute;
    top: 40%;
    left: 0;
    right:0;
    bottom: 0;
    font-size: 7.2rem;
    width: 60%;
    font-weight: bolder;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    margin: auto;
    display: block;
}
.text a{
    text-decoration: none;
    color: rgba(0, 0, 198, .8);
    padding: 10px 30px; 
}

/******* MEDIA QUERY ********/

@media only screen and (max-width: 800px){
    #bg{
        background-repeat: repeat-y;
    }
    .text{
        font-size: 3rem;
        width: 31%;
        text-align: center;
    }
}

@media only screen and (max-width: 600px){
    .text{
        width: 51%;
        text-align: center;
    }
}
