* { margin: 0; padding: 0; }
body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
}

.fontSmall{
    font-size: small;
}

hr{
    height:10px;
    border-width:0;
    color:black;
    background-color:black;
    margin:10px 0;
    /* margin-bottom: 3px; */
}

div{
  /* border: 1px solid #73AD21; */
}

a {
color: Crimson;
}

#container {
/* border: 1px solid #6c22b2;*/
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
/* width: 60%; */
/* width: 860px;   */
}

/* Use a media query to add a breakpoint at 800px: */
@media screen and (min-width: 800px) {
#container {width: 860px; }
}

/* NavBar */

.navbar {
overflow: hidden;
background-color: #333;
}

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

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

.navbar a:hover, .dropdown:hover .dropbtn {
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;
text-decoration: none;
display: block;
text-align: left;
}

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

.dropdown:hover .dropdown-content {
display: block;
}
/* ENDE NavBar */

/* Modal Box(background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
/* width: 60%;*/
width: 800px;
}
@media screen and (max-width: 400px) {
.modal-content {width: 300px; }
p{ margin-left: 4px;}
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}

/* ENDE Modal Box*/

