body, html{
    margin:0;
    padding:0;
    background-image: url("Background2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
    color: #5C3923;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 150%;
}

h1, h2, h3, h4{
    font-family: 'Leckerli One', cursive;
    font-weight: normal;
    color: #ffcc00;
    text-shadow: 2px 2px #000;
    text-align: center;
}

h2{
    font-size: 40px;
}

p{
  font-size: 20px;
  color: #ffcc00;
  line-height: 150%;
  text-shadow: 2px 2px #000;

}

li{
  font-size: 20px;
}

a{
  font-size: 18px; 
  color: #ffcc00;
  text-decoration: none
}

#container {
  background: rgba(0,0,0,.5);
  display: flex;              /* establish flex container */
  flex-direction: column;     /* stack flex items vertically */
  justify-content: center;    /* center items vertically, in this case */
  align-items: center;        /* center items horizontally, in this case */
  height: 100vh;
}

.box {
  width: 500px;
  margin: 5px;
  text-align: center;
}

#headerLogo{
    width: 100%;
    height: 180px;
    background-image: url("TransportugaBay-Logo.png");
    background-size: auto 150px;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;
}


