/* Importing the Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: Arial, sans-serif;*/
  	font-family: 'Poppins', sans-serif;
  	line-height: 1.6;
	font-size: 18px;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #4f2d7f;
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 36px;
  	font-family: 'Poppins', sans-serif;
  	font-weight: 700;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0px 0;
}

nav ul li {
    display: inline;
	font-size: 14px;
    margin-right: 7px;
	margin-left: 7px;
}

nav ul li a {
    color: white;
    text-decoration:none;
    font-weight: bold;
}

.section {
    padding: 20px 0;
    background-color: white;
    margin-bottom: 10px;
	list-style: disc
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

h2 {
    text-align: center;
	font-size: 28px;
    margin-bottom: 20px;
	margin-top: 0px;
  	font-family: 'Poppins', sans-serif;
  	font-weight: 700;
}

ul {
    list-style:disc;
}

ul li {
    margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	margin-top: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: left;
}

form input, form select, form button {
    margin: 2px;
    padding: 2px;
    width: 300px;
    font-size: 16px;
}

form button {
    background-color: #4f2d7f;
    color: white;
    cursor: pointer;
	width: 300px;
}

form button:hover {
    background-color: #331B6B;
}

footer {
    background-color: #63389F;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 15px;
  	font-family: 'Poppins', sans-serif;
}

em {
    font-size: 10px;
	font-style: italic;
  	font-family: 'Poppins', sans-serif;
}

button {
    margin: 3px;
    padding: 3px;
    width: 145px;
    font-size: 20px;
	background-color: #4f2d7f;
    color: white;
    cursor: pointer;
	align-content: center;
	margin-bottom: 5px;
  	font-family: 'Poppins', sans-serif;
}