
/* navbar styles */
.topnav {
    background-color: #000000;
    overflow: hidden;
    width: 100%;
    height: auto;   
    max-width: 1200px;
    align-items: flex-end;
}

.topnav a {
    
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 16px;
    float: left;
    text-align: center;
    width: auto;
    color: white;
}
/* Change the color of links on hover */
.topnav a:hover {
    background-color: white;
    color: black;
    text-decoration: none;
}

/* Add a color to the active/current link */
.topnav a:active {
    background-color: #d9b2bd;
}

.topnav li {
    list-style:none;
}

/* set width of logo image */
.logo-link img {
    width: 250px;
}

a{
    text-decoration: none;
    font-weight: 600;
    color: #e3170a;
}

a:hover{
    text-decoration-line:underline;
}

h1 {
    color: #000000;
}

header {
    background-color: #000000;
}

table {
    table-layout:fixed;
    overflow-x:auto;
}

tbody > tr:nth-child(odd) {
    background-color: #DDD;
}

tbody > tr:nth-child(even) {
    background-color: #FFF;
}

tbody > tr:hover {
    background-color: #D6EEEE;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #DDD;
    overflow: auto;
    /*text-overflow: ellipsis;*/
    white-space: nowrap;
}

.form-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-container input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-container input[type=submit] {
    width: 100%;
    background-color: #09ACEC;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-container input[type=submit]:hover {
    background-color: #078FC5;
}

/*cool button I found*/
/* 
<!-- HTML !-->
<button class="button-82-pushable" role="button">
  <span class="button-82-shadow"></span>
  <span class="button-82-edge"></span>
  <span class="button-82-front text">
    Button 82
  </span>
</button>
*/
/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}
