/* 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-color: black;
  color:#8FFE09;

}a { color:green; }
a:visited { color: purple; }

body {
    background-image: url('wowie.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
}

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.my-text-box {
  width: 300px; /* Adjust the width of the box */
  height: 150px; /* Adjust the height of the box */
  padding: 15px; /* Space between text and the box border */
  border: 2px solid white ; /* Border style, color, and thickness */
  background-color: black ; /* Background color of the box */
  overflow-y: auto; /* Adds a scrollbar if the text is too long*/

.my-image {
  margin-right: 20px;
}