

		
html {
		font-size: 20px; /* Or another base font size of your choice */
	}

body {
	font-family: 'Palatino','Garamond' ;
	background-color: #f0f0f0;
	margin: 0;
	padding: 0;
}
 
 input{
	
	align:
 }
 
 .cookie_container {
	max-width: 500px;
	margin: 50px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
	font-family: 'Arial' ;
	font-size: 0.7rem;
	list-style-type: none;
	padding: 0;
}
li {
	background: #f4f4f4;
	margin: 5px 0;
	padding: 10px;
	border: 1px solid #ccc;
}

.contact_container {
	max-width: 500px;
	margin: 50px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1{
	font-size: 1rem;
}
			
h2 {
	font-size: 0.8rem;
	text-align: left;
	margin-bottom: 0px;
}
			
h3 {
	font-size: 0.8rem;
	text-align: left;
	margin-bottom: 0px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
	font-size: 1.5rem;
	display: block;
	margin-top: 10px;
	margin-bottom: 5px;
}

input[type="text"] {
	padding: 8px;
	margin-bottom: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%; /* Make the textarea width 100% of its container */
	box-sizing: border-box; /* Include padding and border in the width calculation */
	}
	

input[type="email"] {
	padding: 8px;
	margin-bottom: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%; /* Make the textarea width 100% of its container */
	box-sizing: border-box; /* Include padding and border in the width calculation */
	}
	
input[type="number"] {
	font-family: 'Palatino','Garamond' ;
	font-size: 1rem;
	width: calc(10ch + 1rem); /* 10 characters wide, plus padding */
	padding: 0.5rem; /* Optional: Adjust padding as needed */
	text-align: center; /* Center text within the input field */
	display: block; /* Make the input field a block element */
	margin: 0 auto; /* Center the input field on the page */
	box-sizing: border-box; /* Include padding in the width calculation */
}

textarea {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%; /* Make the textarea width 100% of its container */
	box-sizing: border-box; /* Include padding and border in the width calculation */
	resize: vertical;
}

.textarea_container {
  max-width: 100%;
  background-color: #fff;
}

button {
	font-family: 'Palatino','Garamond' ;
	font-size: 0.8rem;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 10px 15px;
	background-color: #900090;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
  background-color: #c000c0;
}

button:active {
  transform: translateY(1px);
}
