/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-image: url('images/rainbowstr.gif');
  background-color: #747F14;
  color: black;
  font-family: Georgia, Arial, Sans-Serif;
}

#top {
  height: 50px;
}


body,
html {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: #747F14;
}

h1,
h2,
h3 {
  margin: 0px;
}

#header {
  text-align: center;
  background-color: rgb(33, 33, 100);
  color: aliceblue;
  background-image: url('images/cio60706.jpg');
  outline-style: outset;
  outline-color: goldenrod;
  margin: 10px;
}


#container {
  background-color: transparent;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-image: url('images/WALLPAP1.png');
  background-repeat: round;
  padding: 10px;
  border-radius: 20px;
}


#content {
  padding: 10px;
  margin-top: 20px;
}

.column {
  float: left;
  margin: 5px;
  border-radius: 10px;
}

.column.left {
  width: 20%;
}

.column.right {
  width: 25%;
  background-image: url('images/030C.jpg');
  height: 1000px;
}

.column.middle {
  width: 50%;
  margin: 5px;
}

.marquee {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: #ffffff;
  background-image: repeating-linear-gradient(rgb(255, 254, 191), rgb(241, 193, 34) 50%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 30px;
  width: 100%;
  /* Full width of its parent */
  white-space: nowrap;
  text-align: center;
}

.marquee p {
  position: absolute;
  width: auto;
  height: 100%;
  margin: 0;
  line-height: 30px;
  text-align: center;
  /* Start off the right edge */
  transform: translateX(100%);
  /* Animate to the left */
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


#nav {
  background-color: white;
  background-image: url('images/Fiesta_Bkgrd.jpg');
  max-width: 200px;
  height: 1000px;
  overflow-x: hidden;
  border-image-slice:
    13 13 13 13;
  border-image-width:
    13px 13px 13px 13px;
  border-image-outset:
    13px 13px 13px 13px;
  border-image-repeat:
    repeat repeat;
  border-image-source:
    url("https://mdn.github.io/css-examples/tools/border-image-generator/border-image-4.png");
  border-style:
    solid;
}

#nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 15px;
  text-align: center;
}

#main {
  background-image: url('images/Fiesta_Bkgrd.jpg');
  color: #333A3F;
  outline-style: inset;
  font-weight: bold;
  text-align: center;
  overflow-y: scroll;
  max-height: 350px;
}


#footer {
  clear: both;
  color: aliceblue;
  background-color: rgb(61, 61, 61);
}

.selected {
  font-weight: bold;
}