@charset "utf-8";
/* CSS Document */

body {
	background-color: lightsteelblue;
	padding: 0; 
	margin: 75px 400px 75px 400px; 
	font-size: 2vh;
	font-family: arial;
	letter-spacing: 1px;
}

* {
    box-sizing: border-box;
}

.columns {
    float: left;
    width: 25%;
    padding: 8px;
}

.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    transition: 0.3s;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .header {
    background-color: chocolate;
    color: white;
    font-size: 25px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.price .grey {
    background-color: #eee;
    font-size: 20px;
}

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@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;  
  }
}