@charset "UTF-8";
/* CSS Document */
* {
    box-sizing: border-box;
}
body{
	background-color:antiquewhite;
	font-family:arial;
}
header{
	text-align:center;
	
}
h1{
	font-size:40px;
	font-family:"Rye", serif;
}
h2{
	font-size:15px;
	font-family:"Annie Use Your Telescope", cursive;
}
h3{ font-size:25px;
	font-family:"Delicious Handrawn", cursive;
	text-align:center;
}
h4 {
    font-family: "Luckiest Guy", cursive;
    font-size: 35px;
    text-align: center;
    margin-top: 20px;
}
h5 {
    font-family: "Fugaz One", sans-serif;
    font-size: 25px;
    text-align: center;
    margin-top: -20px;
}
h6{
    font-family: "Fugaz One", sans-serif;
    font-size: 25px;
    text-align: center;
    margin-top: -20px;
}
p {
    font-family: arial;
    height:100px;
	margin-top:-20px;
    display: inline-block;
    vertical-align: top;
	text-align:left;
}
nav{
	background-color:indianred;
	text-align:center;
	padding:16px;
}
a{
	color:black;
	text-decoration:none;
	margin-left:10px;
	margin-right:10px;
	padding:10px;
	border-radius:10px;
}
article{
	background-color:antiquewhite;
	width:90%;
	margin:auto;
	text-align:center;
}
span {
  float: left;
  width: 0.7em;
  font-size: 400%;
  font-family: algerian, courier;
  line-height: 80%;
}

/* This is the styling for the fillable form*/

form {
  border-radius: 5px;
  background-color:#F3C04A ;
  padding: 30px;
	margin-top:40px;
	display:inline-block;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

label {display: block;}

input[type=text], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid black;
  border-radius: 4px;
  box-sizing: border-box;
	
}

input[type=submit] {
  width: 100%;
  background-color: orangered;
  color: black;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

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

/* This is the styling for the fillable form*/

.w-pic{
	width:100%;
	height:auto;
}
.logo{
	position:absolute;
	top:0px;
	width:150px;
	height:auto;
	transition:width 1s;
}
.cap{
	position:absolute;
	top:300px;
	left:70px;
	font-size:50px;
	
}
.about-text{
	column-count:3;
	width:90%;
	margin:auto;
	padding:15px;
}
.store-con {
    width: 100%;
  
    text-align: center;
}
.card {
    background-color: beige;
    width: 30%;
	margin:10px;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(39,39,39,0.47);
    padding: 10px;
    display: inline-block;
}
.pic-con {
    padding: 10px;
	width:100%;
	height:300px;

}
.s-pic {
    width: 100%;
    height: auto;
}
.card-text {
    padding: 10px;
    background-color: antiquewhite;
    border-radius: 10px;
}
.contact-pic{
	width:40%;
	display:inline-block;
	
    vertical-align: center;
}
.b-pic{
	width:100%;
	height:auto;
	right:0px;
	bottom:0px;
}

.buy{
	position:fixed;
	right:90px;
	bottom:30px;
	width:100px;
}
nav a:hover{
	background-color:rgba(156,123,22,1.00);
}
.logo:hover{
	width:170px;
}
@media (min-width: 800px){
	form{
		width:50%;
		margin:20px;
	}
}
@media (max-width: 800px){
	.about-text{
	column-count:2;
	}
}
