@charset "utf-8";
/* CSS Document */

/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
	margin-bottom: 0;
    padding: 20px;
}
/* styles.css */

body { 
    background-image: url("Images/pattern2.jpg");
	background-size: 2000; 
    background-repeat: no-repeat; 
    background-position: center; 
    font-family: "Poly", serif; 
    font-size: 16px;
	font-style: normal;
    width: 75%;
    margin: auto;
    padding-bottom: 5%;
}

	h1, h2, h3, h4 {
	font-family: "Playfair Display", serif;
	font-weight: 500;
  	font-optical-sizing: auto;
 	font-style: normal;
}
	
.container  {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
	opacity: inherit;
	background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, .8);
}

	table {
			border-collapse:collapse;
			border-radius:10px;
			width: 100%;
			cellpadding:10px;
			text-align: center;
		}


/*Attribute Selector */

		a[href^="https://"] {
			color: crimson;
			text-decoration: none;
			font-weight: bold;
		}

		img[alt="img left"] {
			float: left;
			margin-right: 2%;
		}

		img[alt="img right"] {
			border-radius: 10px;
			float:right;
			margin-left: 2%;
		}

/* Pseudo-classes and Pseudo-elements */

.button-container {
    text-align: center;
}

.join-button {
    background-color:dodgerblue ;
    border: none;
	font-family: "Poly", serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-button:hover {
    background-color: dodgerblue;
    transform: scale(1.05);
}

.submit-button {
    background-color: dodgerblue;
    border: none;
	font-family: "Poly", serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: dodgerblue;
    transform: scale(1.05);
}

.submit-button:active {
    background-color: #397d39;
    transform: scale(1);
}

.comment-section {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
}

.comment-label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.email-section {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
}

.email-label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}