/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 /* FOR DA EVERYTHING */
 
@font-face {
  font-family: "whatwhatclean";
  src: url("/whatwhatclean/whatwhatclean.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
background-image: linear-gradient(to bottom, #f9beac, #FFFFFF);
background-attachment: fixed;
background-repeat: no-repeat;
min-height: 100vh;
color: #db553e;
font-family: 'Verdana', sans-serif;
}

/* FOR DA HEADERS */
h2 {
color: #a33323;
font-family: 'OPENDYSLEXIC', sans-serif;
}

/* FOR DA PARAGRAPHS */
p {
color: #134c67;
font-family: 'Verdana', sans-serif;
text-align: justify;
}

hr {
  display: block;
  margin: 25px;
  color: rgba(255, 117, 140, 0.2);
  border-style: inset;
  border-width: 0.07px;
}

.fadein {
animation: fadeIn 1s ease-in forwards;
opacity: 0;
}
.fade1 { animation-delay: 0s; }
.fade2 { animation-delay: 1s; }
.fade3 { animation-delay: 2s; }
.fade4 { animation-delay: 3s; }

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.btn {
display: inline-block;
padding: 10px 20px;
background-color: #7cb2cc;
color: white;
text-decoration: none;
border-radius: 8px;
box-shadow: 2px 2px 6px 1px rgba(66, 95, 237, 0.5);
font-family: 'whatwhatclean';
font-size: 21px;
font-weight: bold;
margin: 5px;
}

.btn:hover {
background-color: #0056b3;
}

.main-container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}

.centerbanner {
display: block;   
border-radius: 8px;
margin-left: auto;  
margin-right: auto;   
width: 100%;         
max-width: 1920px; 
box-shadow: 5px 5px 10px 2px rgba(255, 117, 140, 0.2);
}

.waow {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1000px;
margin: 30px;
}

.waow img {
width: 100%;
padding-top: 0%;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
border: 6px solid #FFFFFF;
outline: none;
box-shadow: 5px 5px 10px 2px rgba(235, 168, 52, 0.5);
}

.waow img:hover {
opacity: 0.8;
}

.video {
  border-radius: 8px;
  margin-top: 50px;
  cursor: pointer;
  border: 6px solid white;
  box-shadow: 5px 5px 10px 2px rgba(235, 168, 52, 0.5);
}