﻿html{
	background-image: url(Teddy-Bears.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background-attachment: fixed;
    	background-position: center; 

}



ul {
	float: right;
}

transform: matrix (1, 0, 0, 1, 0, 0);

.menu a {
    color: orange;
    text-decoration: none;
    height: 100%;
    padding: 8px 0 0 0;
    float: right;
    font-size: 13px;
    transform: translateY(100%);
    position: relative;
}
.dropbtn {
    background-color: #3A1414;
	border-radius: 100%;
    color: yellow;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
 .dropdown-content {
    display: none;
    position: absolute;
    background-color: yellow;
    min-width: 160px;
    box-shadow: brown;
	float: right;
	border-radius: 50%;
	text-align: center;
}

/* Links inside the dropdown */
 .dropdown-content a {
    color: brown;
	font: Ariel;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
 .dropdown-content a:hover {
	 	border-radius: 50%;
		background-color: #3A1414 
				}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: white;
}

.logo {
	float: right;
}