.navbar {
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
  position: sticky;
  top: 0;
  margin-bottom:0%;
}

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

.dropdown {
  float: left;
}

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

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

.dropdown-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;
  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;
}

@media only screen and (min-width: 1050px){
    .column {
      height:auto;
      float: left;
      width: 33.3%;
      display: none; /* Hide columns by default */
    }

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

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

@media only screen and (max-width: 991px){
    .column {
      height:auto;
      float: left;
      width: 100%;
      display: none; /* Hide columns by default */
    }

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

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

.row,
.row > .column {
  padding: 8px;
}

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

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

.wrapper {
  justify-content: center;
	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;
}

/* 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;
}