.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar input[type=text] {
  float: right;
  width:22%;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
}

.navbar .search-button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.navbar .search-button:hover {
  background: #ccc;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: black;
  text-align: center;
}

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

div.content img {
  width:100%;
  height:50%;
}

.image-wrapper {
  object-fit: cover;
  justify-content: center;
}

.dropdown-right {
	float: right;
	overflow: hidden;
}

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

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

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus .dropdown-right:hover{
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
  padding: 20px;
  font-family: Arial;
}

/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 8px -16px;
}

.column {
  height:auto;
  float: left;
  width: 50%;
  display: none; /* Hide columns by default */
}

.list-paragraph {
  font-size: 20px;
}

.list-paragraph-bold {
  font-size: 20px;
  font-weight: bold;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  display: none; /* Hide columns by default */
}

.column-modify {
  float: left;
  width:100%;
  display:inline-block;
}

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

.content {
  background-color: white;
  padding: 10px;
}

.wrapper {
	text-align:center;
}

.button-content {
	margin-left: auto;
	margin-right: auto;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

.content-contain {
  display: block;
  object-fit: contain;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

.list-paragraph:after {
  content: '\A';
  white-space: pre;
}

.list-paragraph-bold:after {
  content: '\A';
  white-space: pre;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}

.col-25 {
  float: left;
  width: 50%;
  margin-top: 10px;
}

.col-75 {
  float: left;
  width: 50%;
  margin-top: 10px;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.page {
  height: auto;
  margin-top: 2px;
}

input[type=text], select, textarea {
  width: 50%;
}

input[type=submit] {
  float: right;
}

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