* {box-sizing: border-box;}

body { 
  margin: 0;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}



.navbar-container {
  position: sticky;
  overflow: hidden;
  background-color: #bfbfbf;
  padding: 20px 10px;
}

.navbar-container a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.navbar-container a.navbar-Title {
  font-size: 25px;
  font-weight: bold;
}

.navbar-container a:hover {
  background-color: #ddd;
  color: black;
}

.navbar-options {
  float: right;
}

@media screen and (max-width: 500px) {
  .navbar-container a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .navbar-options {
    float: none;
  }
}



.Article-container {
  background-image: url("icon-small.png");

  min-height: 1000px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: scale-down;
  position: relative;
}

.Article-text {
  position: absolute;
  left: 0px;
  margin: 20px;
  max-width: 850px;
  padding: 5px;
  background-color: #bfbfbf;
  opacity: 0.75;
}
.Article-text .title {
   font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.Article-text .text {
   max-width: 1000px;
   max-height: 730px;
  overflow: scroll;
}



.page-container {
  position: relative;
  min-height: 100vh;
}




.Article-container .title {
   font-size: 20px;
  font-weight: bold;
  text-align: center;
}




.container {
  position: absolute;
  left: 0;
  margin: 20px;
  max-width: 300px;
  padding: 16px;
  background-color: #bfbfbf;
}

.container2 {
  position: absolute;
  left: 0;
  margin: 20px;
  max-width: 1000px;
  padding: 16px;
  background-color: #bfbfbf;
}


input[type=text], input[type=password], select {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus, select:focus{
  background-color: #ddd;
  outline: none;
}


.btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

.btn:hover {
  opacity: 1;
}

table, th, td {
  border: 1px solid black;
}
table {
  border-collapse: collapse;
}