body {
  margin: 0px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.object{
	float:right;
	margin:10px;
	caption-side:bottom;
	font-size:10px;
}
.bottomleft {
    position: absolute;
    bottom: 30px;
    left: 86%;
    font-size: 10px;
}
img { 
    width: 40%;
	float:right;
}
.header {
  background-color: #f1f1f1;
  padding: 1px;

}
#logo{
	float:right;
	width:40%;
}
#objectCover1{
	width:20%;
}
#veshch{
	width:30%;
}
#rodchenko{
	width:30%;
}
#lissitzky{
	width:20%;
}
#Isms{
	width:30%;
}
#navbar {
  overflow: hidden;
  background-color: #333;
  z-index:12;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: #C10000;
  color: white;
}

.content {
  padding:16px;
  font-size:24px;
}

.sticky {
  position: fixed;
  top:0;
  width: 100%;
}
.stickyDropdown{
	position:fixed;
	top:25;
}
.sticky + .content {
  padding-top: 30px;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color:#C10000;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  color:black;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #333;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
* {
    box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

/* Style the container/contact section */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}