body {
  background: url('greenBla.png');
  background-size: 22% 22%;
  color: green;
  font-family: Verdana, sans-serif;
  margin: 0;
}

h1, h2 {
  text-align: center;
  margin: 0 0 15px 0;
}

.special-item {
  max-width: 1200px;
  margin: 20px auto 10px auto;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
}

.special-item img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
}

.text-item-heading-top {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 15px 20px;
  background: #001507;
  border: 4px solid #006423;
  border-radius: 8px;
  font-size: 1em;
  text-align: center;
}

.section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.text-item-heading {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.items-row {
  display: flex;
  justify-content: center; 
  gap: 20px;
  flex-wrap: wrap;
}

.grid-item {
  background: #001507;
  border: 4px solid #006423;
  border-radius: 8px;
  padding: 10px;
  max-width: 320px;
  text-align: center;
  box-sizing: border-box;
}

.grid-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

<style>
  video {
    border: 4px solid  #006423;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
</style>



a {
  color: green;            
  text-decoration: none;    
}

a:hover {
  color: green;           
}

a:visited {
  color: green;           
}

a:active {
  color: green;            
}

