body
{color:#ff4900;
background-color:#98acb7;
    background-image: url('https://www.calebforssell.com/images/newerimages/desktop%20lower%20res.jpg');
background-size: 50%, 50%; 
background-position: center center;
 background-attachment:fixed;
background-repeat:no-repeat;
}


a:link {color: #265E38;}      /* unvisited link */
a:visited {color: #265E38;}  /* visited link */
a:hover {color: #ffbf00;}  /* mouse over link */
a:active {color:#ff4f00;}  /* selected link */ 

.oneoneone { 
width:70%; 
height:10%;
   position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
bottom:0;
    
}








.gallery {
  --g: 6px; /* the gap */
  
  display: grid;
  width: 90%;
  height:90%;/* the size */
  aspect-ratio: 1;
  grid: auto-flow 1fr/repeat(3,1fr);
  gap: var(--g);
}
.gallery img {
  width: 100%;
  height: 100%;
  opacity:0.5;
  object-fit: cover;
  filter: grayscale();
  cursor: pointer;
  transition: .5s
}
.gallery img:hover {
  filter: grayscale(0);
  opacity:1;
}

