@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,300;1,600&family=Nunito&display=swap');

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.heading1 {
  margin-left:30px;
}

.tabs {
  padding: 30px;
  text-align: center;
  width: 100%;
}

table {
  width: 1000px;
}

th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
  font-size: 25px;
  background-color: #25569C;
  color: #f7f6f2;
  margin-bottom: 30px;
;
}

td {
  padding-top:8px;
  margin-top: px;
}

body {
	font-family: Nunito Sans;
	font-size: 16px;
	line-height: 1.2;
	
	background-color: #f7f6f2;
  color: rgb(74, 89, 175);
	margin: 80px auto 48px auto;
	width: 1120px;
}

header{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}



h1,nav, footer {
	font-family: Josefin Sans;
	font-size: 40px;
	font-weight: 700;
  line-height: 1.2;
  padding-top: 30px;  
  text-align: center;
}

h2{
  font-family: Josefin Sans;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16x 0 ;
}


a {
	color: rgb(74, 89, 175);
	text-decoration: none;
	margin: 0 0 0 32px ;
	transition: color 0.3s ;
}

a:hover{
	color: rgb(158, 170, 226);
	
}


section{
	margin: 80px 0 80px 0;

	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 32px 32px;
}

section h1{
	grid-column: 2 / span 10;
	text-align: center;
	
}


section.project img{
  grid-column: 1 / span 8;

}

section.project div{
  grid-column: 9 / span 4;
}



footer{
	display: flex;
	align-items: center;
	justify-content: center;
}

footer a {

	margin: 0 16px 0 16px ;

}


#kidsImage{
  width: 900px;
  height: 400px ;
  text-align: center;
  

}









/* Bordered form */
form {
  border: 3px solid #f1f1f1;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

/* Avatar image */
img.avatar {
  width: 40%;
  border-radius: 50%;
}

/* Add padding to containers */
.container {
  padding: 16px;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}




/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */  
  border: 1px solid rgb(172, 204, 223); /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f8f7f4;
  padding: 20px;
}



/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: rgb(74, 89, 175);
  margin-bottom: 50px;
  padding: 20px 10px;
}

/* Style the header links */

.header {
  margin-top: -80px;
}
.header a {
  float: left;
  color: rgb(248, 244, 244);
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: rgb(207, 29, 118);
  color: rgb(250, 245, 245);
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}