body  {
      background-image: linear-gradient(to right, rgba(0,0,225,0.5), rgba(0,0,225,0.1), rgba(0,0,225,0.5));
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      text-align: center;
      font-weight: lighter;
  }

h1  {
    color: navy;
    font-size: 36pt;
    font-weight: lighter;
    text-align: center;
  }

h2  {
    font-size: 24pt;
    font-style: italic;
    text-align: center;
  }

h3  {
    font-size: 18pt;
    font-style: italic;
    text-align: center;
  }

h4  {
    font-size: 18pt;
    font-style: italic;
    text-align: center;
  }

p   {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14pt;
    color: black;
    text-align: center;
  }
.bannerlogo {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-bottom: solid;
    border-color: navy;
    border-width: 3px;
    border-radius: 5px;
}

.bannerlogo img {
    position:fixed;
    top: 7px;
    right: 7px;
    /*    padding-top: 4px;
    top: 3px;
    left: auto;
    right: auto;*/
    max-width: 15%;
    border-radius: 10px;;
  }

.bannertop {
    width: 90%;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    color: black;
    text-align: center;
    border-radius: 5px;
}

.bannertop img {
    top: 3px;
    left: auto;
    right: auto;
    max-width: 20%;
  }

.banner1 {
    background-color: rgba(0,0,255,0.1);
    width: 95%;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-style: solid;
    border-width: 4px;
    border-color: navy;
    border-radius: 20px;
}

.banner1 img {
    top: 3px;
    left: auto;
    right: auto;
    max-width: 35%;
    border-style: solid;
    border-width: 4px;
    border-color: black;
    border-radius: 7px;
  }

  .banner_at {
    background-color: rgba(255,0,0,0.1);
    width: 95%;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-style: solid;
    border-width: 4px;
    border-color: red;
    border-radius: 20px;
}

  .bannerbottom {
    background-color: navy;
    width: 95%;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-left: auto;
    margin-right: auto;
    color: azure;
    text-align: center;
    border-radius: 10px;
}

.bannerbottom img {
    top: 3px;
    left: auto;
    right: auto;
    max-width: 35%;
    border-style: solid;
    border-width: 4px;
    border-color: 4px;
    border-radius: 4x;
  }

.main-container {
    width: 450px;
    height: 300px;
    /*
    background-image: url("images/...jpg");
    background-position: center;
    background-size: cover;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;*/
}

button {
    margin: 1rem;
    outline: none;
    width: 40px;
    height: 40px;
    background: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 50%;
    opacity: .5;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    opacity: 1;
}

/* << Links >> */

/* unvisited link */

a:link {
	color: blue;
  /*font-size: 1.5em;*/
  text-align: center;
}

/* visited link */
a:visited {
  color: blue;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: lime;
}

/* Tables */

table {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border-width: 1px;
  border-color:blue;
  /*background-color: beige;*/
  background-color: black;
  font-family: 'Courier New', Courier, monospace;
}


tr {
  border-bottom-style: solid;
  border-width: 1px;
  border-color: gray;
}

th {
  /*background-color: lightgreen;*/
  background-color: moccasin;
  color: black;
  padding: 5px 15px;
}

td {
  background-color: white;
  color: black;
  padding: 5px 15px;
}

/* Forms */

input[type=text], input[type=number], input[type=date] {
  width: auto;
  padding: 5px 10px;
  border-style: none;
}