    h2 {
        background-color: gold;
        border-radius: 5px;
        border-style: double;
        border-color: red;
        color: black;
    }
    text2 {
    color: white;
    }
    logo {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
    header {
        text-align: left;
        background-color: #020F23;
        padding: 20px;
        border-radius: 2px;
        border-color: gold;
        border-style: solid;
        border-width: 2px;
        border-radius: 5px;
    }
    navbar a {
        text-decoration: none;
        color: black;
        font-weight: bold;
        margin: 0 10px;
        border-width: 2px;
        border-style: solid;
        border-color: blue;
    }
    navbar {
        border-width: 2px;
        border-style: solid;
        border-color: black;
        padding: 6px;
        background-color: yellow;
    }
    navbar a:hover {
        background-color: lightblue;
    }
    body {
        background-image: url("https://scigifumo.org/fatcat9000/banners/hi_stern021.gif");
    }
    .body2 {
        background-color: #1F3C67;
        color: white;
        text
        font-family: Arial, sans-serif;
        border-width: 4px;
        border-style: solid;
        border-color: gold;
        border-radius: 5px;
        padding: 10px;
    }
    .body2 span { 
    background-color: gold; 
    color: black;
    }
    #body2 {
        background-color: #020F23;
        color: white;
        border-color: gold;
        border-width: 2px;
        border-style: solid;
        border-radius: 5px;
    }
    #body2 a {
        background-color: orange;
    }
    footer {
        background-color: rgb(7, 47, 134);
        text-align: center;
        font-size: 14px;
        color: white;
        margin-top: 20px;
        padding: 20px;
        border-radius: 5px;
        border-color: gold;
        border-style: solid;
        border-width: 2px;
    }
    /*Hi this is luke now before you think I vibe coded this but I actually took this code off of a stack overflow page from about 11 years ago */
    /*also if you see this thanks for checking out my css coding*/
    #scroll-container {
    border: 3px solid black;
    border-radius: 5px;
    overflow: hidden;
    background-color: yellow;
    }

    #scroll-text {
    text-align: right;

    /* animation properties */
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
    }

    /* for Firefox */
    @-moz-keyframes my-animation {
    from { -moz-transform: translateX(-100%); }
    to { -moz-transform: translateX(100%); }
    }

    /* for Chrome */
    @-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(-100%); }
    to { -webkit-transform: translateX(100%); }
    }

    @keyframes my-animation {
    from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    }
    to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}