/* 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('test quatro.jpg');
  color: #FFFF00;
  font-family: Times;
}

a {
  color: #FFFF00
} 

.my-text:hover {
  color: red;
}

.scroll-box {
    width: 600px;        /* Fixed width */
    height: 700px;       /* Fixed height */
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;    /* Crucial: Adds a vertical scrollbar only when needed */
    background-color: blue;
    border-radius: 25px;
  padding: 20px;
  }
  
.container {
  position: relative; /* Establishes a positioning context for the image */
  width: 100%;
  min-height: 200px;
}

.top-right-img {
  position: absolute;
  top: 0;
  right: 0;
}

div.gallery {
    display: flex;
  justify-content: flex-start;

}

div.gallery-item {
    margin: 5px;
  width: 300px;
}

div.gallery-item:hover {
  border: 1px solid #333;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

.hover-text:hover {
  color: red;
}
  
  .container {
  position: relative; /* Acts as the anchor point for the image */
  height: 300px;      /* Needs a height to define the space */
}

.bottom-right-img {
  position: absolute;
  bottom: 0;
  right: 0;
}


.header {
  width: 100%;
  background-color: #f79dcd;
  height: 150px;
  background-image: var(--header-image);
  text-align: center;
  box-sizing: border-box; 
  background-image: url('/rainbow.gif');
  background-size: 1000px;
}

.brinstar {
  color: white;
  background: black;
  padding: 16px;
  background-clip: padding-box;
  border-image-slice: 15 16 16 15;
  border-image-width: 15px 16px 16px 15px;
  border-image-repeat: stretch;
  border-style: solid;
  border-color: transparent;
  image-rendering: pixelated;
  border-image-source: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAuAgMAAAAq18OkAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAxQTFRFAAAAXJT8AICIAAAAMJBBFAAAAAR0Uk5T////AEAqqfQAAADISURBVHicYxT94M0UwcDwbctBnf+MWRIKDBwMDN85Exq+MaZ+YOD1AHK+HGDQZlRrYSg3YWD47SXw7wYjmz/j6hAg56QN8wpGNxWLhg6gsoqJ934wpv3/ewDE+fHnM5DDsIcBzPn/Acj5degeAwMD44znHBWMaSwaE8AygvMsGN12Mck9AMqIvwDKqLX8LwdyGGYJ/LrDmLCAQQmk7H4DQwNj1oGyDwVAZcuZbuxjZEACjFoGJxJrGBj+rt2vVDZEOSj+GfpRAgDhFNgvvQpzuQAAAABJRU5ErkJggg==");
}
