@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	box-sizing: border-box;
}



body {
    background-color: #ffdba4;
	margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.navbar{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.logo{
	width: 100px;
}

.navbar fixed-top {
	width: 90%;
	padding: 30px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar ul li{
	list-style: none;
	display: inline-block;
	margin: 20px;
	
}

.navbar ul li a{
	text-decoration: none;
	text-transform: uppercase;
	color:black;
	border-radius:25px;
	font-weight: 900;
	padding: 15px;
	
}

li a:hover{
	background: #f27900;
	transition: 0.5s;
	
}

li a:hover{
	color: #f27900;
	transition: 0.5s;
}

.navbar ul li a:hover{
	color: #e9e9e9;
	transition: 0.5s;
	}



.navbar fixed-top a:hover{
	color: #ffffff;
}

.footerContainer{
	width:100%;
	padding: 70px 30px 20px;
	text-align: center;
	align-items: center;
	align-content: center;
}

.socialIcons{
	display:flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.socialIcons a{
	text-decoration: none; 
	padding:10px;
	background-color: #f27900;
	margin: 10px;
	border-radius: 50%;
}

.socialIcons a i{
	font-size: 2em;
	color:#e9e9e9;
	opacity: 0.9;
}

.socialIcons a:hover{
	background-color: #ffdba4;
	transition:0.5s;
	
}

.socialIcons a:hover i{
	color:#f27900;
	transition: 0.5s;
}

.footerNav ul{
	display: flex;
	justify-content: center;
}

.footerNav ul li a{
	color: black;
	margin: 20px;
	text-decoration: none;
	font-size: 1.3em;
	opacity: 0.7;
	transition: 0.5;
}

.footerNav ul li a:hover{
	opacity: 1;
}

.footerBottom{
	background-color:#f27900;
	padding:20px;
	text-align: center;
}

.footerBottom p{
	color: white;
}


.designer{
	opacity: 0.7;
	letter-spacing: 1px;
	font-weight: 400;
	margin: 0px 5px;
	
}

form{
    width: 700px;
    border: 3px solid darkgray;
    padding: 15px;
    border-radius: 20px;
    margin: 50px auto;
    box-shadow: 2px 2px 15px gray;
}

.Heading{
	text-align: center;
	font-size: 70px;
	border-radius:300px;
	color: #e9e9e9;
	background: #f27900;
	width: 30%;
	margin: 0 auto;
}	

legend{
	font-size: 40px;
}

label{
	font-size: 25px;
}

fieldset{
    margin: 10px 0px;
    padding: 10px;
}

.input_group{
    margin: 8px 0px;
    display:block;
    align-items: center;
    gap: 10px;
}

form input, form select, form textarea{
    font-size: 20px;
    flex: 1;
    padding: 4px;
    outline: none;
}

form textarea{
    width: 100%;
    resize: vertical;
    field-sizing: content;
}

#submit_button{
    display: block;
    width: 200px;
	height: 50px;
    border: none;
    font-size: 25px;
    letter-spacing: 5px;
    background-color: #f27900;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: .8s;
	margin: 0 auto;
}

#submit_button:hover{
    background-color:#ffdba4 ;
	color: #f27900;
}