body.splash
	{
		background-color: rgb(0,0,0);
    	margin-left: auto;
    	margin-right: auto;
    	margin-top: 0px;
    	margin-bottom: auto;
	}
div
	{
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 14px;
		font-weight: bold;
		color: rgb(0,0,0);
	}
div.welcomeText
	{
		padding-top: 150px;
		font-size: 60px;
		font-weight: 900;
		color: rgb(255,255,255);
		text-align: center;
		white-space:nowrap;
		text-shadow: 3px 3px 6px #000000;
	}
div.tagLine
	{
		padding-top: 0px;
		font-size: 20px;
		font-weight: 600;
		color: rgb(255,255,255);
		text-align: center;
		white-space:nowrap;
		text-shadow: 3px 3px 6px #000000;
	}
div.menuItem
	{
		font-family: "Helvetica Neue", Helvetica, "Arial Narrow", sans-serif;
		position: fixed; 
		font-size: 20px;
		font-weight: 700;
		color: rgb(90,90,90);
		transition: color 0.25s;
  		cursor: pointer;
		white-space:nowrap;
	}
div.menuItem:hover
	{
  		color: rgb(33,98,175);
	}

div.templates
	{
		background-image: url("https://www.vinylizer.ca/images/templates-bg.jpg");
		background-repeat: no-repeat;
    	background-size: cover;
		width: 1024px;
		height: 553px;
		display:block;
		margin-left:auto;
		margin-right:auto;
	}
div.contact
	{
		background-image: url("https://www.vinylizer.ca/images/contact-bg.jpg");
    	background-repeat: no-repeat;
    	background-size: cover;
		width: 100%;
		height: 64vw;
	}
div.navigation
	{
		background-image: url("https://www.vinylizer.ca/images/navigation-bg.png");
		background-repeat: repeat-x;
		width: 100%;
		height: 135px;
		position: fixed;
		top: 0px;
	}
div.footer
	{
		background-image: url("https://www.vinylizer.ca/images/contact-bg.jpg");
    	background-repeat: repeat-xy;
    	background-size: cover;
		width: 100%;
		height: 125px;
	}
button
	{
  		border-radius: 3px;
		font-size: 20px;
		font-weight: normal;
		color: rgb(255,255,255);
		text-align: center;
		width: 200px;
		height: 60px;
		background-color: rgb(221,106,18);
		transition: background-color 0.25s;
  		cursor: pointer;
  		margin: 5px;
  		border: none;
		
	}

button:hover
	{
  		background-color: rgb(234,145,71);
	}
ul
	{
		margin-top: 0vw;
	}
a
	{
		text-decoration: none;
		color: rgb(177,177,177);
		font-weight: 700;
	}
select
	{
		-webkit-appearance: menulist-button;
	}
textarea
	{
		resize: none;
	}
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}