@charset "utf-8";
/* CSS Document */
@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}

nav ul {
      	list-style: none;
      	background-color: chocolate;
      	text-align: center;
      	margin: 0;
	    padding: 0;
	    width: 100%;
      	height: 75px;
}

nav li { 
      	float: left; 
      	width: 150px;
	    height: 100%;
}

nav a {
      	display: block;  
      	text-decoration: none;
	    height: 100%;
	    padding: 10px;
      	color: white;
}

nav a:hover {
	background-color: orange; 
}

@media only screen and (max-width: 960px) {
nav a {
	font-size: 2.5vh; 
  }
}

footer { 
	clear: left;  
	height: 250px; 
	margin: 0; 
	padding: 0; 
	background-color: DarkOrange; 
	font-family: arial; 
	color: white; 
}

@media only screen and (max-width: 768px) {
footer {
	height: auto;   
  }
}

.products { 
	float: left; 
	margin: 25px 0 25px 0;
	padding: 0;
	height: 200px; 
	width: 49%; 
	border-right: 1pt solid white;  
	text-align: center;
}

@media only screen and (max-width: 768px) {
.products {
	float: none; 
	width: 100%;  
	height: auto; 
	margin: 0; 
	overflow: auto; 
	border-right: none; 
	border-bottom: 1pt solid white;
  }
}

.products ul {
	list-style-type: none; 
	columns: 3; 
	column-gap: 5px; 
}

	
.products li a {
	text-decoration: none; 
	font-size: 1.5vh; 
	color: white; 
}

@media only screen and (max-width: 768px) {
.products li a {
	font-size: 2.5vh; 
  }
}

.products li a:hover {
	background-color: grey; 
}
	
.about {
	float: left; 
	margin: 25px 0 25px 0; 
	padding: 0;
	height: 200px; 
	width: 50%; 
	font-size: 1.75vh; 
	text-align: center; 
}

@media only screen and (max-width: 768px) {
.about {
	float: none; 
	width: 100%;  
	height: auto; 
	margin: 0; 
	overflow: auto; 
	border-right: none; 
	border-bottom: 1pt solid white;
  }
}

.about a { 
	color: white; 
}

footer .fa {
	font-size: 3vh; 
	margin: 10px; 
}

@media only screen and (max-width: 768px) {
footer .fa {
	font-size: 5vh; 
  }
}

footer .fa:hover {
	color: lightgrey;
}

header {
	background-color: darkorange; 
	height: 125px;  
	color: white;
	font-family: 'Oswald', sans-serif;  
}

header svg {
	float: left;
	height: 100px; 
	width: 125px; 
	margin: 10px 40px 10px 10px;
	border-right: solid 1pt orange;
}

@media only screen and (max-width: 768px) {
header svg {
	float: none;  
	margin: 10px 0 0 35%; 
	border: none; 
  }
}

header h1 {
	padding: 15px 0 0 0; 
	font-size: 5.5vh; 
	letter-spacing: 2px;
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
header h1 {
	display: none;  
  }
}
body {font-family: Arial, Helvetica, sans-serif;}

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: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}