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


/* 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: white;
  font-family: Verdana;
  cursor: url('cursor website4.svg'), auto;
  text-align: center;
  display: block; /* Ensures the image behaves as a block-level element */
  margin-left: auto; /* Centers the image horizontally by setting equal left margin */
  margin-right: auto; /* Centers the image horizontally by setting equal right margin */
  }
.black-text {
  color: black;
}
.white-text{
  color: white;
}
.red-text {
    color: red;
}
.blue-text {
    color: blue;
}
.light-blue-text {
  color: #00ffd4;
}
.center-image {
    display: block;
    margin: auto;
    /*: 50%;*/
}
.right-image {
    float: right;
    margin-left: 10px; 
    /*: 300px; */
}
.center-text {
    text-align: center;
}
.center-link {
    display: block;
    text-align: center;
    margin: auto;
    width: fit-content;
}
.trail {
    position: absolute;
}
.twittelink {
    width: 230px;
    max-width: 100%;
    display: block;
    margin: auto;
    /*: 50%;*/
}
