
	
	/* wildcard styling */
	* { 
		box-sizing: border-box; 
	} 
	/*url(../../images/thc-bg-image.jpg)*/
	/* padding for whole body */
	body { 
		padding: 0;
		font-family: times;
		background: #000000;
        /*background-size: cover;*/
        background-position: bottom;
		text-align: center;
        animation: fadein 3s 1, zoomin 3s 1;
          }
    table {
    margin: 0;
    
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) }
    
	iframe {
	    width: 100%;
	    height: 90%;
	    border: 0;
	    border-color: #000000;
	    display: flex;
	    

	}
         
        	/* styling body */
	.container {
	    text-align: center;
		width: 100%;
		display: flex;
		align-items: center;
        justify-content: center;
		margin: 10 auto;
		height: 10%;
		transform: scale(1);
	}
	
	.container div { 
		width:300px;
		height: 100%;
		
		
	}
	
        
    @keyframes fadein {
        0% {
            opacity: 0;
            }
        100% {
            opacity: 1;
        }
}
        @keyframes zoomin {
    0% {
        transform: scale(0.97,0.97);
    }
    100% {
        transform: scale(1,1);
    }
}
	
	button {
	    font-size: 1rem;
	    padding: 0 1.75rem;
	    border-radius: 0.75rem;
	    background: #703846;
	    color: #ba5971;
	    border: 1px solid;
	}
	
	button:hover {
	    background: #a25568;
	    color: #f5a2b7;
	    border: 2px solid;
	    box-shadow: 0 0 0 6px rgba(245, 162, 183 , .3);
	    filter: blur(0.9px);
	    transform: translate(0px, -3px);
	    cursor: pointer;
	}
	
	img {
	    /*border-radius: 1rem;*/
	    color: rgb(141, 141, 141);
	    color: rgba(141, 141, 141, 0.5);
	    border: 1px solid;
	}
	
	img:hover {
	    transform: translate(0px, -3px);
	}
	h1 { 
		text-align: center;
		filter: drop-shadow(0px 4px 0px black);
		padding: 0;
		color: #f4a400;

	}
		h2 { 
		    
		text-align: center;
		padding: 0;
		color: #ffffff;
	}
		h3 { 
		    
		text-align: center;
		filter: drop-shadow(0px 3px 0px black);
		padding: 0;
		color: #f4a400;
	}
	
	/* anchor tag decoration */
	a { 
		text-decoration: none; 
		color: #f4a400;
		filter: drop-shadow(0px 0px 3px #ffffff);
		text-align: center;
	} 
	
	a:hover { 
		color: #ffffff;
		-webkit-text-fill-color: #f4a400;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: white;
		transform: translate(0px, -6px);
		filter: drop-shadow(0px 3px 6px white);
	} 
	
	/* paragraph tga decoration */
	p { 
		display: -webkit-box; 

		-webkit-line-clamp: 4;
		text-align: center;
		font-size: 17px;

	} 
	


	

	

	



	

