::-moz-selection { /* Code for Firefox */
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
  }
  
  ::selection {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
  }
html, body{
    font-size: 1.3rem;
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    background-color: #abb37d;

}

article,section{
    margin-bottom: 30px;
}

article{
    padding: 20px;
    border-radius: 5px;   
    color: #c1b726;
    background-color: rgb(41, 113, 65);
    text-shadow: 1px 1px 1px black; 

    box-shadow: 1px 1px 2px 2px black;
}

header {
    padding: 0.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px black;
    height: 35vh;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;
    font-size: 2em;
    border-bottom: 2px solid #4e574b;
    z-index: 1000;

}

.hero {
    position: relative;
    width: 100%;
    height: 35vh; 
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white; 
    font-size: 2rem;
    text-align: center;
    line-height: 20pt;
}

marquee{
    background-color: #b37e00;
    color: black;
    border: 1px solid #845d00;
}