@charset "utf-8";
/*

   Author:  Hock Jian
   Date:  12 May 2019 
   


*/
/* HTML and BodyStyles */

body {
    margin-left:auto;
    margin-right:auto; 
    max-width:1280px;
    min-width: 640px;
    width:95%;
    font-size:20px;
    text-align:center
}
/*Article Styles*/
article, p {
    width:95%;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}
article h1 {
    font-size:50px;
    line-height:70px;
}
article h2 {
    line-height:50px;
}
a {
    color:rgba(0,0,0,0.6);
    text-decoration:none;
    border-left: 2px solid black;
    border-right: 2px solid black;
    padding: 5px 25px 5px 25px;
    font-weight:bold;
}
/*Hover Styles*/
a:hover, a:active {
    transition:0.2s;
    color:rgba(0,0,0,1);
    box-shadow: 0 0 3px 3px black
}