/* 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 {
  text-align: center;
  background-color: black;
  color: green;
  font-family: sans-serif;
}

div{
  border: 4px solid rgb(0, 255, 0);
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 100px;
  }


a{
  color: green;
  }

a:hover{
  color: blue;
  }
  
.sidebar {
    float: left;
    width: 250px;
    margin-right: 20px;
}

.main-content {
    overflow: hidden; /* This creates a new block formatting context */
    /* OR use margin-left: 270px; (250px + 20px) */
}