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

/* Global Styles */
body {
    font-family: "love ya like a sister", Arial, sans-serif;
    background-color: #fff;
    text-align: center;
}

/* Header Styles */
.header {
    background-color: rgb(230, 236, 245);
    border-radius: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.header a {
  font-size: 1.5rem;
  text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 20px 20px;
}

.header a:hover {
    background-color: rgb(176, 231, 255);
}

.logo img {
    max-height: 250px;
}

/* Hero Styles */
.hero {
  position: relative;
  height: 100vh;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(168, 168, 225, 0.2));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(0, 0, 0);
  padding: 70px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 50px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 50px;
}

.hero .btn {
  padding: 15px 20px;
  background-color: rgb(176, 231, 255);
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  border-radius: 30px;
}

/* Paragraphs Styles */
.paragraphs {
    padding: 30px;
}

.paragraphs p {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "love ya like a sister", Arial, sans-serif;
}

.scrollable-images {
    display: flex;
    overflow-x: auto;
    padding: 90px;
}

.scrollable-images img {
    width: 100%;
    height: auto;
    margin-center: 0px;
}

/* Media Queries for Responsive Design */
/* At 768px or less, set header navigation to be vertically stacked */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }
    .header nav ul {
        margin-top: 20px;
    }
    .logo img {
        max-height: 150px;
    }
}

/* At 480px or less, adjust the hero text padding */
@media (max-width: 480px) {
    .hero-overlay {
        padding: 50px;
    }
}

/* Fluid Grids */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Create responsive columns using a flexbox grid system */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    padding: 10px;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}

/* Media Queries for Responsive Images */

/* At 480px or less, set image width to 100% */
@media (max-width: 480px) {
    .scrollable-images img {
        width: 100%;
    }
}

/* At 768px or less, set image width to 100% */
@media (max-width: 768px) {
    .scrollable-images img {
        width: 100%;
    }
}



/* Footer Styles */
.footer {
    background-color: rgb(230, 236, 245);
    text-align: center;
    padding: 30px;
    color: rgb(0, 0, 0);
    font-family: "love ya like a sister", Arial, sans-serif;
}

.footer-image {
    margin-bottom: 10px;
}

.footer img {
    width: 250px; 100px
