/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#welcome {
    display: flex;
    flex-direction: column;
  margin: 0;
  min-height: 100vh;
  background-image: url("../images-folder/NBCLogo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
  
.container {
  position: relative;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  top: 0;
  margin: 0 auto;
  padding: 0.5em 0.5em 0.5em 0.5em;
  font-size: 22px;
  font-weight: 700;
  font-family: Tahoma sans-serif;
  color: #3b7687;
  background-color: inherit;
}

.header img,
.header span {
  display: inline-block;
  vertical-align: middle;
}

.mainMenu {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 0 6px 40px;
}

.mainMenu ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.mainMenu ul li {
    margin: 10px;
}

.mainMenu ul li a {
    display: block;
    padding: 10px 20px;
 color: #f0f8ff;
 background-color: #5d8a8a;
 text-decoration: none;
 font-size: 18px;
 font-weight: bold;
 font-family: "Tahoma", "sans-serif";
 border: 2px solid #5d8aa8;
 border-radius: 5px;
 transition: background 0.3s ease;
}

.mainMenu a:active, .mainMenu a:hover {
    background-color: #a52a2a;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: row;
        align-items: center;
    }
    nav ul li a {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
}

.icon {
  max-width: 30px;
  height: 30px;
}

footer {
 padding: 0;
 background: #d6d6d6; /* Metallic Platinum */
 font-family: "Lucida Sans Unicode";
 color: #996515;  /* Golden brown */
 text-align: right;
 font-size: 12px;
 font-weight: 500;
 margin-top: auto;
}

footer p {
    text-align: right;
}

footer p a {
 text-decoration: none;
 color: #00080;  /* navy */
 font-weight: 500;
 font-family: "Lucida Sans Unicode";
}

.separator {
  color: #996515;
  font-size: 12px;
  font-weight: bold;
}