body{
    margin:0;
    padding:0;
    background-image: url(../csc2005-lab02-2020/images/background-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    height:100vh;
    max-height: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#title-content{
    display: flex;
    text-align: center;
    justify-content: center;
}

#title-content h1{
    font-family: 'Tangerine',cursive ;
    font-weight: bold;
    color: white;
    font-size: 8rem;
    text-shadow:0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
#text-paragraph{
    display: flex;
    justify-content: center;
    text-align: justify;
}
#text-paragraph p{
    font-family:'Open-Sans',sans-serif;
    font-weight:bold;
    color:white;
    font-size:1rem;
    margin-left:15px;
    margin-top:20px;
}

/* Media Queries for Phones (S) , Phones(M), Tablet Size */

/* For Small Phones */
@media only screen and (min-width: 320px) and (max-width:368px){
    body {
      height:130vh;
    }

    #text-paragraph p{
        font-size: 15px;
    }

    #title-content h1{
        font-size: 4rem;
    }

    
  }
/* For Medium Sized Phones */
  @media only screen and (min-width: 368px) and (max-width:410px){
    body {
      height:130vh;
    }

    #text-paragraph p{
        font-size: 15px;
    }

    #title-content h1{
        font-size: 4rem;
    }

    
  }
