/* 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." */

body {
  background-image: url("/stars4.gif");
  background-color: black;
  color: black;
  font-family: Comic Sans MS;
}

div {
    border: #000000 1px black ;
}

#box {
            background-image: url("/abstract2.png");
            width: 1120px;
            border: 4px ridge;
            border-color: lavender;
            border-radius: 10px;
            color:white; 
            display:inline-block;
            text-align:center;
            margin-left: 10px;
            margin-top: 10px;
            padding: 2px;
 }
 
#box2 {
    float: left;
    width: 550px;
    text-align:center;
    background-color:black;
    color:white;
    margin-left: 10px;
    margin-top: 10px;
    padding: 2px;
    border: 4px ridge violet;
    border-radius: 10px;
    
}

#box3 {
            background-color: black;
            width: 1120px;
            border: 4px ridge;
            border-color: lavender;
            border-radius: 10px;
            color:white; 
            display:inline-block;
            text-align:center;
            margin-left: 10px;
            margin-top: 10px;
            padding: 2px;
 }
 
#container {
    display:inline-block;
    width: 1120px;
    text-align:center;
    margin-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 2px;
            border: 4px ridge;
            border-color: violet;
            border-radius: 10px;
}

.header-r {
    background-color:black;
    width: 50%;
    margin-left: 10px;
    margin-top: 10px;
    padding: 2px;
    border: 4px ridge blue;
    border-radius: 10px;
}

.header-l {
    background-color:black;
    display:block;
    width: 50%;
    margin-left: 10px;
    margin-top: 10px;
    padding: 2px;
    border: 3px solid violet;
    border-radius: 10px;
}

#logo {
  position:absolute;
  float:right;
}

.hrighttop1 {
  width: 28%;
  position: relative;
}

.main {
  display:block;
  align:center;
  max-width:1205px;
  min-width:1205px;
  margin-left:auto;
  margin-right:auto;
}

.main2 {
  display:block;
  align:center;
  max-width:1190px;
  min-width:1190px;
  margin-left:auto;
  margin-right:auto;
}

.stayput {
  position: absolute;
}

.flex {
  display: flex;
}

.image{
  float:left;
  width:30%; 
  margin-right:10px;
}
.image img {
    display:block;
    width:105%;
    height:105%
}

.image2{
  float:right;
  width:30%; 
  margin-left:10px;
}
.image2 img {
    display:block;
    width:105%;
    height:105%
}

.image3{
  float:left;
  width:30%; 
  margin-right:10px;
}
.image3 img {
    display:block;
    width:100%;
    height:100%
}


 /* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 50%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
} 

.sidebar {
height: 200px;
width: 150px;
position: fixed;
top: 0;
right: 0;
padding-top: 40px;
background-color: lightblue;
}

.sidebar div {
padding: 8px;
font-size: 24px;
display: block;
}

.body-text {
margin-right: 150px;
font-size: 18px;
}


.marquee {
    width: 800px;
    height: 150px;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    list-style: none;
    animation: scrolling 10s linear infinite;
}

.marquee-item {
    height: 31px;
    width: 88px;
    flex-shrink: 0;
}

.marquee-image {
    height: 100%;
    width: 100%;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex(-1000px); }
}

.pin {
  image-rendering: crisp-edges;
}


/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-6/nat598.cur), auto !important;} /* End https://www.cursors-4u.com */