
body{
	font-family: Arial, Helvetica, sans-serif;
	background-image: linear-gradient(90deg, rgb(245, 245, 245), rgb(197, 197, 197));
}
footer{
	
	border-top: 1px solid #666;
	margin-top: 20px;
	text-align: center;
}
header{
	background-color: #24252a;
	box-shadow: 0px 3px 10px #464646;
}
.nav-bar{
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 2rem;
}
.logo{
	display: flex;
	align-items: center;
}
.logo h1{
	color: #fff;

}
.nav-list{
	display: flex;
	align-items: center;
}
.nav-list ul{
	display: flex;
	justify-content: center;
	list-style: none;
}
.nav-item{
	margin: 0 15px;
}
.nav-link{
	text-decoration: none;
	font-size:1.15rem;
	color: #fff;
	font-weight: 400;
}
.login-button button{
	border: none;
	background-color: dodgerblue;
	padding: 10px 15px;
	border-radius: 5px;
}
.login-button button a{
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	font-size: 1.1rem;
}
.mobile-menu-icon{
	display: none;
}
.mobile-menu{
	display: none;
}

@media screen and (max-width: 730px){
	.nav-bar{
		padding: 1.5rem 2rem;
	}
	.nav-item{
		display: none;
	}
	.login-button{
		display: none;
	}
	.mobile-menu-icon{
		display: block;
	}
	.mobile-menu-icon button{
		background-color: transparent;
		border: none;
		cursor: pointer;
	}
	.mobile-menu ul{
		display: flex;
		flex-direction: column;
		text-align: center;
		padding-bottom: 1rem;
	}
	.mobile-menu .nav-item{
		display: block;
		padding: 1rem 2rem;
	}
	.mobile-menu .login-button button{
		width: 100%;
	}
	.open{
		display: block;
	}
}


nav{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #666;    
}

nav ul{
	display: flex;
	list-style: none;
	align-items: center;
	margin: 20px;
}

ul li{
	margin-left:15px;
	color: darkblue;
	border-radius: 15px;
}

ul li a{
	color: rgb(26, 28, 122);
}

div3{
	
	top: 80%;
	left: 80%;
	transform: translate(-20%,-20%);
	padding: 10px;
	border-radius: 15px;
}
p{
	margin-left: 10px;
	margin-top: 0px;
	margin-right: 10px;
}
h4{
	margin-left: 20px;
	margin-top: 0px;
	margin-right: 10px;
}
input{
	padding: 15px;
	border: 1px;
	outline: 1px;
	border-radius: 10px;
	border: solid rgb(116, 116, 116);
    border-width: 0 3px 3px 0;
	font-size: 15px;
	height: 10%;
	width: 90%;
	display: block;
	margin: 0 auto;


}
select{
	padding: 15px;
	border: 1px;
	outline: 1px;
	border-radius: 10px;
	border: solid rgb(116, 116, 116);
    border-width: 0 3px 3px 0;
	font-size: 15px;
	height: 10%;
	width: 90%;
	display: block;
	margin: 0 auto;
}
button{
	background-color: dodgerblue;
	border: none;
	padding: 15px;
	width: 100%;
	border-radius: 10px;
	color: white;
	font-size: 15px;
	cursor: pointer;
}
button:hover{
	background-color: deepskyblue;
}

.inputButton{
	background-color: dodgerblue;
	border: 1px;
	outline: 1px;
	border: solid rgb(116, 116, 116);
	border-width: 0 3px 3px 0;
	padding: 15px;
	width: 100%;
	border-radius: 10px;
	color: white;
	font-size: 15px;
	cursor: pointer;
	margin-top: 10px;

}
.inputButton:hover{
	background-color: deepskyblue;
}
h3{
	color: rgb(41, 41, 41);
}


.card {
/* Add shadows to create the "card" effect */
background-color: rgb(196, 196, 196);
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container-card {
padding: 2px 12px;
}
	



/* The container */
.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 16px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-left: 10px;
}

/* Hide the browser's default checkbox */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;

}

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: rgb(184, 184, 184);
border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
background-color: rgb(182, 232, 252);
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}