
.container {
    display: inline-block;
    width: 400px;
    min-height: 100px;
    background-color: white;
    height: auto;
  }

#logo { 
        white-space: nowrap;
        overflow-x: auto;
        background-color: white;
        padding-right: 0px;
        position: fixed;
        z-index: 9999;
 }

#navigation { 
   display: inline-block;
   margin-left: 30px;
   position: fixed;
   z-index: 9999;
 }


.banner {
    margin-top: 1px;
    padding: 200px 350px 350px;
    background-color: #b0b0b0;
    height: 100%;
    /*background-image: url("/images/aditya-vyas-mHdATQY9fIU-unsplash.jpg");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 10;
}

h1 {
    /*background-color: deepskyblue;*/
    font-style: italic;
    font-size: 75px;
    text-align: center;
    size: 150px;
    color: white;

    /*background-color: white;*/
}


h2 {
    /*background-color: deepskyblue;*/
    font-style: italic;
    font-size: 70px;
    text-align: center;
    size: 150px;
    color: white;
    /*background-color: white;*/
}

.about{
    font-size: 40px;
    font-color: black;
}

.credit {
    background-color: beige;
    display: inline;
    justify-content: right;
    align-content: end;
    font-size: 15px;
    color: black;
}

.legend{
    background-color: none;
}

p {
    text-align: center;
    font-size: 40px;
    color: whitesmoke;
}

.newacct {
    text-align: left;
    color: #706644
    font-size: 35px;
}

.tble {
    background-color: beige;
    z-index: 500;
    display: table;
   /* position: absolute; */
    left: 350px;
}
 
.trailer{
    font-size: 25px;
 }

img {
  display: block;
  width: 150%;
}

a {
  text-decoration: none;
}


nav {
    color: #777;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

ul {
    background: white;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

li {
    color: #fff;
    background: white;
    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}
  
li a {
  color: #000000;
}

li:hover,
li:focus-within {
    background: lightblue;
    cursor: pointer;
}

li:focus-within a {
  outline: none;
}

ul li ul {
    background: white;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
}

ul li ul li {
    clear: both;
    width: 100%;
}

.btn {
    border:2px solid blue;
    border-radius: 20px;
    padding: 15px;
    display: inline;
    margin: 15px;
}

/* <style>
.scroll-left {
 height: 25px;  
 overflow: hidden;
 position: relative;
 background: black;
 color: white;
 border: 1px solid grey;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 /* transform:translateX(100%);
 /* Apply animation to this element */
/* animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
/*@keyframes scroll-left {
 0%   {
 transform: translateX(100%);       
 }
 100% {
 transform: translateX(-100%); 
 }
} */

#scroll-container {
  border: 3px solid white;
  border-radius: 10px;
  overflow: hidden;
}

#scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 50s linear infinite;
  -webkit-animation: my-animation 50s linear infinite;
  animation: my-animation 50s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

/*</style>*/

/* Login Page */

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: #3a3a3a;
}

#main-holder {
  width: 50%;
  height: 70%;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 0px 5px 2px black;
}

#login-error-msg-holder {
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
}

#login-error-msg {
  width: 23%;
  text-align: center;
  margin: 0;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #8a0000;
  border: 1px solid #8a0000;
  background-color: #e58f8f;
  opacity: 0;
}

#error-msg-second-line {
  display: block;
}

#login-form {
  align-self: flex-start;
  display: grid;
  justify-items: center;
  align-items: center;
}

.login-form-field::placeholder {
  color: #3a3a3a;
}

.login-form-field {
  border: none;
  border-bottom: 1px solid #3a3a3a;
  margin-bottom: 10px;
  border-radius: 3px;
  outline: none;
  padding: 0px 0px 5px 5px;
}

#login-form-submit {
  width: 100%;
  padding: 7px;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  background-color: #3a3a3a;
  cursor: pointer;
  outline: none;
}