﻿	  	body {
	  		font-family: Tahoma;
	  		background-color: yellow;
	  		text-align: center;
	  		}
	  	h1 {
  				font-size: 32px;
  			}
  		h2 {
	  		  font-size: 24px;
  			}
  		.container {
  			overflow: auto;
  			width: 100%;
  			margin: auto;
  			}
  		.menu {
  			background-color: yellow;
	  		width: 100%;
  		}
	  	.button {
	  		background-color: #a1e3a2;
	  		text-decoration: none;
	  		color: black;
	  		padding: 10px;
	  		text-align: center;
	  		font-size: 16px;
	  		margin: 10px;
	  		cursor: pointer;
	  		border-radius: 8px;
	  		box-shadow: 0 9px #999
	  	}
	  	.button:hover {
	  		background-color: #3e8e41;
	  	}
	  	.button:active {
	  		background-color: #3e8e41;
	  		box-shadow: 0 5px #666;
	  		transform: translate(4px);
	  	}
	  	a:link {
	  		text-decoration: none;
	  	}
	  	a:hover {
	  		text-decoration: underline;
	  	}
	  	a:active {
	  		text-decoration: underline;
	  	}