nav {
	background-color: #5a4ae3;
	padding: 10px;
	display: flex;
	justify-content: center;
  }
  
  nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
  }
  
  nav li {
	margin-right: 20px;
  }
  
  nav a {
	color: black;
	text-decoration: none;
  }
  
  nav img {
	max-height: 50px;
	width: auto;
  }

.outer-container {
    margin: 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* add 2rem of padding on both sides */
}

table {
    width: 60%; /* adjust the width of the table */
    border-collapse: collapse;
    margin: 0 auto; /* center the table horizontally */
    margin-top: 1.5rem;
	text-align: center;
}


body {
    font-family: 'Libre Franklin', sans-serif;
    background-color: #f1f1f1;
    color: #333;
    text-align: center; /* center all text within the body */
	margin: 0;
}

h1 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
	text-align: center;
	color: #5a4ae3;
}

p {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
	text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* rest of the CSS code */


th, td {
    padding: 0.75rem;
    text-align: left;
    vertical-align: middle;
    border: 3px solid #5a4ae3;
	text-align: center;
}

th {
    font-weight: bold;
    background-color: #5a4ae3;
	text-align: center;
	color: white;
}

img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
}

td:first-child {
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    img {
        width: 50px;
        height: 50px;
    }
}
