		* {
	box-sizing: border-box;
	font-family: Tahoma, "Trebuchet MS", sans-serif;	

}

body {
	padding: 16px 8px;
	font-size: 19px;
	line-height: 1.2;
	max-width: 960px;
	margin: 0 auto;
	color: #333;
}

img {
	max-width: 100%;
}

#gstinfo {
padding-top: 5px;
height: 15px;
text-align: center;
}

#main {
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#main h4{
padding: 8px 15px;
border-bottom: 2px solid #f9f9f9;
font-weight: bold;
text-align: center;
}

/* BEGIN GUESTBOOK FORM */
        .Gstcontainer {
            margin: 20px auto;
            padding: 2px 10px 20px 10px;
			max-width: 500px;	
        }
		
        .form-group {
            margin-bottom: 10px;
        }
		
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;			
            box-sizing: border-box; /* Ensures padding doesn't add to total width */
        }
        textarea {
            resize: vertical; /* Allows vertical resizing only */
            min-height: 100px;
        }
        .frmbtn {
            background-color: #508abb;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .frmbtn:hover {
            background-color: #0056b3;
        }	

		#captcha{
		width: 100px;
		}	
		
/* END GUESTBOOK FORM */

/* BEGIN BLINK TEXT */
.blinking-text {
	font-weight: bold;
    animation: blink-animation 1s infinite; /* Apply the animation */
}

@keyframes blink-animation {
    0% {
        opacity: 1; /* Fully visible at 0% of the animation */
    }
    50% {
        opacity: 0; /* Fully transparent at 50% of the animation */
    }
    100% {
        opacity: 1; /* Fully visible again at 100% of the animation */
    }
}

/* BEGIN BLINK TEXT */

@media screen and (min-width: 800px) {
	body {
		padding: 16px 32px;
	}


/* BEGIN GUESTBOOK FORM */
.Gstcontainer {

    max-width: 500px;
            margin: 0 auto;	
			margin-top: 20px;

}

#captcha{
width: 120px;
}
/* END GUESTBOOK FORM */

}