/* CSS Document */
?v=0.80
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans", sans-serif;
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 80px;
	background: #152C4D;
	border-bottom: 2px solid #FFF;
}

nav .logo a {
	font-size: 26px;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

nav .logo a:hover {
	color: #DB2777;
	transition: 0.5s;
}

nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

nav ul li {
	list-style-type: none;
}

nav ul li a {
	color: #FFF;
	text-decorat: none;
	font-size: 18px;
	font-weight: 500;
}

nav ul li a:hover {
	color: #DB2777;
	transition: 0.5s;
}

.pageHeader {
	flex-basis: 100%;
	margin: 10px;
	text-align: center;
	flex-wrap: wrap;
	text-shadow: 2px 2px 5px grey;
}


.content {
	flex-basis: 100%;
	text-align: center;
	margin-left: 20%;
	margin-right: 20%;
	margin-top: 3%;
	flex-wrap: wrap;
	text-shadow: 2px 2px 5px grey;
}

button{
	background-color: #152C4D;
	border: none;
  	color: white;
	border-radius: 8px;
  	padding: 4px 32px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 16px;
}

.button:hover {
	color: #DB2777;
	background-color: #294875;
	border: solid 2px;
	border-color: #DB2777;
	font-weight: bold;
	padding: 6px 38px;
	transition: 0.5s;
}

legend {
  	display: block;
 	padding-left: 2px;
 	padding-right: 2px;
  	border: none;
	font-size:200%;
	
}

legend:hover {
	color: #DB2777;
	font-weight: bold;
	transition: 0.5s;
	
}

label{
	font-size: 24px;
}

.label:hover{
	color: #DB2777;
	font-weight: bold;
	transition: 0.5s;
}

input{
	width: 35%;
    height: 26px;
    border: 1px solid #DEELE6;
    padding: 0 15px;
    border-radius: 4px;
    color: #4D4D4D;
}

input:focus{
	width: 45%;
    height: 32px;
    border: 1px solid #dee1e6;
    padding: 0 15px;
    border-radius: 4px;
    color: #000;
	transition: 0.5s;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

@media screen and (max-width:992px){
	nav .logo{
		display:none;
	}
	
	.pageHeader {
	flex-basis: 100%;
	margin: 5px;
	text-align: center;
	flex-wrap: wrap;
}
	
	.content {
	flex-basis: 100%;
	text-align: center;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 3%;
	flex-wrap: wrap;
}
}

