/* Media Queries: Tablet Landscape */
@media screen and (max-width: 1060px) {
    #primary { width:67%; }
    #secondary { width:30%; margin-left:3%;}  
}

/* Media Queries: Tablet Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; }
    #secondary { width:100%; margin:0; border:none; }
}
img { max-width: 100%; height: auto; }
@media (min-device-width:600px) {
    img[data-src-600px] {
        content: attr(data-src-600px, url);
    }
}

@media (min-device-width:800px) {
    img[data-src-800px] {
        content: attr(data-src-800px, url);
    }
}
html{
    font-family: arial;
    font-size: 15pt;
    background: black;
    text-align: left; color: beige;
    padding: 15px;
    }
}

.alink{
    text-decoration: none;
    color: orange;
}
h1{
  font-size: 20pt;   
}
.button{
    background:darkolivegreen;
}

table, th, td#t01 {
  width: 100%;
  background-color:dimgray;
    border: 1px solid orange;
     border-collapse: collapse;
    padding: 15px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

li {
  float: left; width: 160px;
}

li a {
  display: block;
  color: orange;
  text-align: center;
  padding: 46px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111;
}
section {
  float: left;
    padding: 16px;
    
}
h1{
  text-align: center;  
}
.img{
    text-align-last: center;
}

a{text-decoration: none;
    color: orange;
    
}       
        
}
footer{
   float: left; 
}
.article{
    background-color: gray;
   
}

/* Style The Dropdown Button */
.dropbtn {
  background-color: #d9cca0;
  color: rgb(222, 65, 7);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.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-current {
  position: absolute;
  background-color: #959191;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #aa8747;
}
* {
  box-sizing: border-box;
}
.article {
  width: 25%;
  float: left;
}
.main {
  width: 75%;
  float: left;
}

* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

[class*="col-"] {
  float: left;
  padding: 15px;
  
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
</style>