body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 20px;
}

h1 {
    color: #000000;
    text-align: center;
}

p {
    margin: 20px auto;
    line-height: 1.6;
}

img {
    display: block;
    width: 200px;
    height: auto;
}
.content-row {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; /* center the whole row horizontally */
    gap: 20px;
    max-width: 800px; /* optional: keeps layout readable on large screens */
    margin: 0 auto;   /* centers the block itself */
    flex-wrap: nowrap; /* prevent wrapping */
}
.content-column1{
    padding-left: 10%;
}
#menu ul {
  background-color: #60a5ff; /* AliceBlue */
  list-style: none;
  margin: auto;
  width: 80%;
  display: flex;
  justify-content: center;
}

#menu li {
  background-color: #60a5ff;
  margin: 20px;
  padding: 20px;
  display: flex;
}
.contact{
    margin-left: 10%;
    min-height: 100vh;
    background-color: #e8f0;
    padding: 50px;
    text-align: center;
}
.container{
    max-width: 800px;
    margin: 0 auto;
}
.container h2{
    font-size: 36px;
    margin-bottom: 40px;
    color:#333;
}
.contact-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 30px;
}
.contact-form{
    text-align: left;
}
.contact-form h3{
    font-size: 24px;
    margin-bottom: 20px;
    color:#333;
}
.form-group{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border:none;
    background-color: #f8f9fa;
    color:#333
}
input:focus,
textarea:focus{
    outline:none;
    box-shadow: 0 0 8px #bbb;
}
button{
    display: inline-block;
    padding: 12px 24px;
    background-color: #3caf50;
    color:#fff;
    border:none;
    cursor: pointer;
    transition: 0.3s ease;
}
button:hover{
    background-color: #45a049
}
.contact-info{
    text-align: left;
}
.contact-info h3{
    font-size: 24px;
    margin-bottom: 20px;
    color:#333;
}
.contact-info p{
    margin-bottom: 10px;
    color:#555;
}
@media screen {
    
}
img {
    transition:transform 0.25s ease;
}

img:hover {
    -webkit-transform:scale(1.5); /* or some other value */
    transform:scale(1.5);
}
.yellowstone_row{
    padding-right: 15%;
}
.yellowstone_column {
  float: right;
  width: 15%;
  padding: 50px 24px;
  margin: auto;
}
.yellowstone_row:after {
  content: "";
  display: table;
  clear: both;
}
.yellowstone p{
text-align: center;
}
.youtube{
    display: block; /* Ensures margin: auto works */
    margin: 0 auto; /* Centers horizontally */
    width: 600px;
}
a.nav-link:link
{
   color: #ffffff;
   text-decoration: none;
}
a.nav-link:visited
{
   color: #ffffff;
   text-decoration: none;
}
a.nav-link:hover
{
   color: #ffffff;
   text-decoration: none;
}
a.nav-link:active
{
   color: #ffffff;
   text-decoration: none;
}