body{
background-color:#D4D4D4;
margin: 0;
 overflow-x: hidden; /* Prevent horizontal scroll */
 height: 100%; /* Full viewport height */
 background-repeat: no-repeat;
}


.parallax {
  /* Set a specific height */
  min-height: 200px;



  /* The image used */
  background-image: url('trimfour.jpg');

  /* Full height */
  

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


p{
font-size:25px;
}
h2{
font-size:35px;
}
h3{
font-size:30px;
text-align:left;
}
ul,li{
text-align:left;
font-size:20px;
}
ol,li{
text-align:left;
font-size:25px;
}
h4{
text-align:left;
font-size:15px;
}
li{
text-align:left;
font-size:20px;
}

.background {
    position: relative;
    width: 100%;
    height: 300px;/* Full viewport height */
    background: url('trimsix.jpg') repeat-y; /* Background image to scroll */
    background-size: cover; /* Ensure image covers the container */
    background-attachment: fixed; /* Ensure image stays fixed */
}

.content {
    position: relative;
    padding: 20px;
    color: #D4D4D4; /* Text color */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
}

@keyframes scrollBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 100%;
    }
}
/* Apply the scrolling background effect */
.background {
    animation: scrollBackground 30s linear infinite; /* Adjust duration as needed */
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}


