@charset "UTF-8";
/* CSS Document */
body {
  font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
  background-color:#BAD2F5;
  margin: 0;
  padding: 0;
}

/* Add a black background color to the top navigation */
.topnav {
  position: relative;
  background-color: #BAD2F5;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #111;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: cornsilk;
  color: #111;
}

/* Centered section inside the top navigation */
.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: none;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
  .topnav a, .topnav-right {
    float: none;
    display: block;
  }

  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

.container {
	width: 30%;
	margin: 0 auto;
	background-color:#BAD2F5;

}

.navi{
	list-style: none;
	display: flex;
	gap: 4%;
	align-items: left;
	justify-content: left;
	padding: 30px;
}

.navi a.visited {
	color: deeppink;
}

.navi a.hover {
	color:deeppink;
	text-decoration:underline;	
}

.navi a.visited {
	color:deeppink;
	align-items:left;
	justify-content: left;
	
}

.main {
	height: 450px;
	display: flex;
}
	p.main {
    text-align: justify;
	margin-bottom: 10px;
}

.row {
	display: flex;
	gap: 3%;
	justify-content: left;
	align-content: center;
}

h1 {
  font-size: 40px;
  color: darkslategray;
  margin-bottom: 10px;
}
h1 {
  text-align:left;
	}

h3 {
  text-align: left;
}

h4 {
  text-align: left;
}
	p {
		text-align:left;
	}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
}