BODY{
		scrollbar-base-color: #33CC99; 
		margin: 0px; 
		padding: 0px;
		border: #000000 0px solid; bgcolor="#FFFFFF"
		}
	
	td.menu {;background-image:URL(images/przycisk.gif);
	background-repeat:no-repeat; 
	width :174px;height:30px}
	
	h1.logo 
	{
		font-family:Arial
		;font-style:italic;
		font-size:16pt;
		font-weight:bold;
		text-align:right;
		color:#FFFFFF;
		margin:0;
		margin-right:2px;
		padding:10px 0 10px 0
	}

	p.logo 
	{
		font-family:Arial;
		font-style:normal;
		font-size:9pt;
		font-weight:bold;
		text-align:right;
		color:#FFFFFF;
		margin:0;
		margin-right:5px;
		padding:0
	}
	
	p.stopka 
	{
		font-family:Arial;
		font-style:normal;
		font-size : 8pt;
		font-weight:normal;
		text-align:center;
		color:#000000 
	}
	
	a.copyright 
	{
		font-family:Verdana;
		font-style:normal;
		font-size:8pt;
		text-decoration:none;
		color:#33CC99
	}
	
	#navigate a
	{
		font-family:Verdana;
		font-style:normal;
		font-size:10pt;
		font-weight:bold;
		text-decoration:none;
		color:#006633;
		margin-left:10% 
	}

	#navigate a:hover
	{
		font-family:Verdana;
		font-style:normal;
		font-size:10pt;
		font-weight:bold;
		text-decoration:none;
		color:#ffffff;
		margin-left:10%
	}

	h1
	{
		font-family:Verdana;
		font-style:normal;
		font-size:16pt;
		font-weight:bold;
		text-align:left;
		margin-left:
		20px;color:#000000
	}

	p
	{
		font-family:Verdana;
		font-style : normal;
		font-size : 10pt;
		font-weight :normal;
		text-align : left;
		text-indent : 1em;
		margin-left:20px
	}
	
	.navbar-form[type=text] 
	{
		width: 200px;
		box-sizing: border-box;
		border: 2px solid #ccc;
		border-radius: 4px;
		font-size: 16px;
		background-color: white;
		background-position: 10px 10px; 
		background-repeat: no-repeat;
		padding: 12px 20px 12px 40px;
		-webkit-transition: width 0.4s ease-in-out;
		transition: width 0.4s ease-in-out;
	}

	input[type=text]:focus
	{
		width: 100%%;
	}
	
	
	
	body
	{
		font-family: "Lato", sans-serif;
	}
	
	.sidenav
	{
		height: 100%;
		width: 0;
		position: fixed;
		z-index: 1;
		top: 0;
		left: 0;
		background-color: #111;
		overflow-x: hidden;
		transition: 0.5s;
		padding-top: 60px;
	}

	.sidenav a 
	{
		padding: 8px 8px 8px 32px;
		text-decoration: none;
		font-size: 25px;
		color: #818181;
		display: block;
		transition: 0.3s;
	}

	.sidenav a:hover, .offcanvas a:focus
	{
		color: #f1f1f1;
	}

	.sidenav .closebtn 
	{
		position: absolute;
		top: 0;
		right: 25px;
		font-size: 36px;
		margin-left: 50px;
	}

	@media screen and (max-height: 450px) 
	{
		.sidenav {padding-top: 15px;}
		.sidenav a {font-size: 18px;}
	}

	#bookmark-this 
	{
		padding: 5px 21px;
		font-size: 12px;
		background: 	#006400;
		color: #fff;
		border: 1px solid 	#006400
		border-radius: 4px;
		text-decoration: none;
		text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
		-webkit-user-select:none;
		-moz-user-select:none;
		-ms-user-select:none;
		user-select:none;
	}

	#bookmark-this:hover
	{
		background: #ec971f;
		border: 1px solid #d58512;
		text-decoration: none;
	}

	#bookmark-this:active 
	{
		border: 1px solid #d58512;
		-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
		background: #ec971f;
	}
	
	
	
	
	
	@import  url(https://fonts.googleapis.com/css?family=Montserrat);

$button-bg-color: #348AA7;
$button-border-color: #166E84;

body{
  background: #5DD39E;
  font-family: Montserrat;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button{
  display: inline-block;
  padding: 15px;
  margin-right: 5px;
  height: 50px;
  min-width: 100px;
  background: $button-bg-color;
  border: none;
  outline: none;
  color: white;
  font-family: inherit;
  font-weight: 400;
  font-size: 20px;
  border-radius: 3px;
  box-shadow: 0 5px 0px darken($button-bg-color,0%);
  border-bottom: 2px solid darken($button-bg-color,3%);
  
  &:hover
  {
    background: darken($button-bg-color,5%);
    box-shadow: 0 4px 1px darken($button-bg-color,5%);
    border-bottom: 2px solid darken($button-bg-color,8%);
    transition: all 0.1s ease-in;
  }
  
  &:active
  {
    transform:translateY(4px);
    border-bottom-width: 2px;
    box-shadow: none;
  }

  
 .button {
    position: relative;
    background-color: #4CAF50;
    border: none;
    font-size: 28px;
    color: #FFFFFF;
    padding: 20px;
    width: 200px;
    text-align: center;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}
