@import url('https://fonts.googleapis.com/css2?family=Castoro+Titling&display=swap');


body{
	font-family: 'Poppins', sans-serif;
}


.image {
		margin:0 auto;
		display:flex;
		justify-content:center;
	    align-items:center;
	    flex-wrap:wrap;
		flex:1;
	    width: 100%;
       max-width: 450px;
      height: auto;
}

h1{
	text-align:center;
	font-weight:bold;
        color:#061161;
}

h2{
      color:#061161;
}

.content{
	font-size:120%;
	line-height:1.5;
	padding:10px 30px;
}

.fsp{
        margin:0 auto;
		display:flex;
		justify-content:center;
	    align-items:center;
	    flex-wrap:wrap;
		flex:1;	
}
.fsp-item{
	padding:15px;
}


.richtable{
		max-width:1100px;
		overflow-x:auto;
		margin:auto;
}

table {
  border-collapse: collapse;
  max-width: 1100px;
  margin:0 auto;
}

 td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

 tr:nth-child(even){background-color: #f2f2f2;}

 tr:hover {background-color: #ddd;}

 th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background:linear-gradient(#00c6ff, #0072ff);
  color: white;
}

table a{
	text-decoration:none;
	color:#061161;
}





/*FOR FORMS*/

	* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #4285f4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #101010;
}

.form-container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 30px;
  max-width:800px;
  margin:0 auto;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/*FORM ENDED*/

