body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
  
.topnav {
	overflow: hidden;
	background-color: #333;
	display: flex;
	flex-direction: row;
}

p {
	color: white;
}

a { 
	color: white; 
	text-decoration: none;
}
  
.topnav a {
	color: #FFFF00;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
  
.topnav a:hover {
	background-color: rgb(145, 145, 145);
	color: red;
}
  
.topnav a.active {
	background-color: #FFFF00;
	color: white;
}

.topnav .icon {
	display: none;
	margin-left: auto;
}
  
.logo-image {
	width: 200px;
	position: sticky;
	top:0;
}
  
#logo {
	width: 130px;
	margin-left: 5px;
	margin-top: 2px;
	position: sticky;
	float: left;
}

footer {
	text-align: left;
	background-color: #333;
	color: white;
}


ul {
	list-style: none
} 

li {
	display: block;
	padding: 7px;
}

@media (max-width: 446px) {
	li {
	  display: inline-block;
	}
	ul {
		padding: 0px;
	}
}


.copyright {
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.2);
	color: #333;
}

#footer-main {
	background-color: #333;
	border: solid 1px #333;
  }
  
.footer-grid {
	display: grid;
	grid-template-columns: 30% 20% 20% 20%;
	grid-auto-rows: auto;
	grid-gap: 10px;
	margin: 0 auto;
	max-width: 100%;
}
  
@media (max-width: 884px) {
	.footer-grid {
	  padding-left: 20px;
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}
  
section {
	color: #fff;
	padding:20px;
}
  
h1{
	text-align:center;
	margin:80px 0;
}
  
h4 {
	font-size:1.2rem;
}


.row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}
  
  /* Create four equal columns that sits next to each other */
.column {
	flex: 31%;
	max-width: 31%;
	padding: 0 4px;
}
  
.column img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}

.float {
	display: none;
}
  
  /* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 773px) {
	.column {
	  flex: 40%;
	  max-width: 40%;
	}
}
@media screen and (max-width: 773px) {
  	.float{
	  display: block;
	  position:fixed;
	  width:60px;
	  height:60px;
	  bottom:40px;
	  right:40px;
	  background-color:rgb(204, 0, 0);
	  color:#FFF;
	  border-radius:50px;
	  text-align:center;
	  box-shadow: 2px 2px 3px #999;
	}

	.my-float{
	  margin-top:22px;
	}
}
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.column {
	  flex: 100%;
	  max-width: 100%;
	}
}
  
@media screen and (max-width: 773px) {
	.topnav a:not(:first-child) {display: none;}
	.topnav a.icon {
	  float: right;
	  display: block;
	}
}

@media screen and (max-width: 773px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
	  position: absolute;
	  display: block;
	  right: 0;
	  top: 0;
	}
	.topnav.responsive a {
	  float: none;
	  display: block;
	  text-align: left;
	}
	.topnav {
	  display: block;
	}
	.topofnav{
	  margin-top: 50px;
	}
}



body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #FFFF00;
  color: #333;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
	background-color: red;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

