.image-with-border {
  width: 100px;         
  height: auto;         
  border: 1px solid black; 
  box-sizing: border-box; 
}
  hr {
    border: none;
    height: 1px; 
    background-color: White; 
    width: 16%; 
    margin: 1px  
  }
#div-1 {
  max-height: 100px;
}
p {
  font-size: 14px;
}
.small-image {
  width: 90px; 
  max-width: 100%; 
  height: 90px; 
}
.medium-image {
  width: 150px; 
  max-width: 150%; 
  height: auto; 
}
.large-image {
  width: 200px;
  max-width: 150%;
  height: auto;
}
#main {
  width: 600px;
  margin: 0 auto; fixed

}
.simple {
  width: 500px;
  margin: 20px auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}


a:link {
  color:#2596be;
  background-color: transparent;
  text-decoration: none;
  text-decoration: underline;
  font-size: 15px;
}

a:visited {
  color:#2596be;
  background-color: transparent;
  text-decoration: none;
  text-decoration: underline;
  font-size: 15px;
}

a:hover {
  color:#551A8B;
  background-color: transparent;
  text-decoration: underline;
  font-size: 15px;
}

a:active {
  color: White;
  background-color: transparent;
  text-decoration: underline;
  font-size: 15px;
}

body {
  background-color: White;
  color: Black;
  font-family: sans-serif;
}
.sidebar {
  width: 250px;
  position: fixed;
}
.column {
  float: left;
  width: 25%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}
.container {
  display: flex;
  gap: 1px;
}
.scroll-box {
  width: 300px;
  height: 200px;
  overflow: auto;
  border: 1px solid #ccc; 
}

.grid-container {
  display: grid;
  grid-template-areas: "col1 col2 col2 col2 col2 col2";
  
}
.box {
  border: 1px solid black;
  padding: 5px;
  margin: 5px;
  height: 500px;
  width: 1000
  
}

.grid-container {
  display: grid;
  grid-template-areas: "col1 col2";
}

#g1 {
  grid-area: col1;
}

#g2 {
  grid-area: col2;
}
.my-box3 {
    width: 1000px;
    height: 15px;
    margin-right:100px;
    margin-left: 100px;
  }
