body{
  background-image: url("https://files.catbox.moe/v8xg8r.jpg");
  font-size: 13px;
  font-family: verdana;
  margin-top: 75px;
}
a:link {text-decoration: none; color: #2f3e93;}
a:visited {text-decoration: none; color: #2f3e93;}
a:hover {text-decoration: underline; color: #2f3e93;}
a:active {text-decoration: none; color: #2f3e93;}
img {
  vertical-align: middle;
  max-width:100%;
  max-height:100%
}
a img {
  border: 0px;
}
table, td {
  vertical-align: top;
  border-spacing: 0px;
  border-collapse: collapse;
  padding: 2px 2px 2px 2px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0px;
  width: auto;
} 
li a:link {
  display: block;
  background-color: #2f3e93;
  color:#fff;
  text-decoration: none;
  padding: 5px 5px 5px 5px;
  margin-bottom: 6px;
}
li a:visited {
  display: block;
  background-color: #2f3e93;
  color:#fff;
  text-decoration: none;
  padding: 5px 5px 5px 5px;
  margin-bottom: 6px;
}
li a:hover {
  display: block;
  background-color: #6172c4;
  color:#fff;
  text-decoration: underline;
  padding: 5px 5px 5px 5px;
  margin-bottom: 6px;
}
li a:active {
  display: block;
  background-color: #2f3e93;
  color:#fff;
  text-decoration: none;
  padding: 5px 5px 5px 5px;
  margin-bottom: 6px;
} 
.wrapper{
  border: 2px solid blue;
  border-radius: 15px 15px 0 0;

  width: 860px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
.header {

  height: 15px;
  background: #FFFFF;
  color: #ffffff;
}
.footer{
  height: 50px;
  background: #6172c4;
  color: #ffffff;
}
.content {
  
  display: flex;
  flex: 1;
  background: #ffffff;
  color: #000;
}
.columns{
  display: flex;
  flex:1;
  height: 500px;
}
.main{
    border: 5px solid blue;
  border-radius: 15px 15px 0 0;
    background-image: linear-gradient(to top, whitesmoke, white);
  flex: 1;
  order: 2;
  overflow: auto;
}
.sidebar-left{
  border: 5px solid blue;
  border-radius: 15px 15px 0 0;
  width: 180px;
  background-image: linear-gradient(to top, whitesmoke, white);
  order: 1;
  overflow: auto;
}
.sidebar-right{ 
  border: 5px solid blue;
  border-radius: 15px 15px 0 0;
  width: 180px;
  order: 3;
  background-image: linear-gradient(to top, whitesmoke, white);
  overflow: auto;
}

.news-ticker-wrapper {
  overflow: hidden;
  background-image: linear-gradient(to top, darkblue, mediumblue);
  color: white;
  padding: 5px 0;
  font-weight: bold;
  position: relative;
  height: 30px;
  width: 100%;
}

.container {
  display: grid;
}

.news-ticker {
  position: absolute;
  white-space: nowrap;
  animation: scrollRight 10s linear infinite;
  transform: translateX(-100%); /* Start off-screen to the left */
  
}

@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}


