html {
  --yellow: #e3d98c;
}

body {
  background: lightgray;
  font-family: "Times New Roman";
}

main {
  display: flex;
}

header {
  background-color: white;
  padding: 3px;
}

header h1 {
  font-family: "Helvetica";
  text-transform: uppercase;
}

header nav ul {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
}

header nav a {
  color: white;
}

footer {
  background-color: var(--yellow);
}

#topbar {
  background: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#topbar nav {
  width: 50%;
}

#header-content {
  display: flex;
}

#header-content h1 {
  width: 75%;
}

#marquee {
  height: 50px;
  overflow: hidden;
  position: relative;
  background: black;
  color: yellow;
  border: 1px solid #4a4a4a;
}

#marquee p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll-left 2s linear infinite;
  -webkit-animation: scroll-left 2s linear infinite;
  animation: scroll-left 20s linear infinite;
  display: flex;
  align-items: center;
}

#marquee img {
  filter: invert(100%);
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

#sidebar1,
#sidebar2 {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 10px;
}

#maincontent {
  width: 60%;
}

#donate button {
  text-transform: uppercase;
  padding: 20px;
}

.ad {
  margin: 10px;
}

.ad img {
  width: 100%;
}

.header-images {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  width: 50%;
}

.checkerbox {
  display: flex;
  flex-flow: row wrap;
}

.even,
.odd {
  display: flex;
  align-items: center;
  padding: 10px;
}

.even {
  background: darkgray;
}

.cow-icon {
  height: 30px;
}

.name {
  font-weight: 900;
  text-transform: uppercase;
}

.live {
  color: lime;
}

.required {
  color: red;
}

.instructions {
  font-size: 12px;
}
