body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Picture1.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.button-class {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;

}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}



/* Header styling */
#Header {
    position: center;
    height: 170px;
    width: 1000pX;
    z-index:1;
    }
    
    #Decal {
    position: absolute;
    z-index: 2;
    right: 5px;
    top: 1px;
}



header p {
    font-size: 1.2em;
    font-weight: 300;
    position: center
    ;
}
.ribbon {
    position: relative;
    top: -16px;
    right: -706px;
 }
/* Navigation Bar */
nav {
    background: #ffffff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fffc45;
}

/* Main content styling */
main {
    padding: 40px 0;
    background: white;
}

.news-article {
    margin-bottom: 20px;
}

.news-article h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.news-article p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
}

/* Footer styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1em;
}