.hover-image:hover {
transform: scale(1.1);
}
button {
    background-color: aquamarine;
}
/* --- DESKTOP STYLES (Your current default setup) --- */
p {
  font-size: 16px;       /* Standard size for computers */
  line-height: 1.5;
}
h1 {
  font-size: 32px;
}
.hero-image {
  width: 50%;            /* Takes up half the screen on desktop */
}


/* --- TABLET STYLES (Screens 1024px and smaller) --- */
@media (max-width: 1024px) {
  p {
    font-size: 18px;     /* Bumps up text size for tablets */
  }
  h1 {
    font-size: 36px;     /* Makes headers larger */
  }
  .hero-image {
    width: 80%;          /* Expands image width */
  }
}


/* --- PHONE STYLES (Screens 768px and smaller) --- */
@media (max-width: 768px) {
  p {
    font-size: 20px;     /* Makes text even larger for easy reading */
    line-height: 1.6;    /* Adds extra space between lines */
  }
  h1 {
    font-size: 40px;     /* Bold, prominent headers */
  }
  .hero-image {
    width: 100%;         /* Forces image to span full width of the phone */
    height: auto;        /* Prevents image distortion */
  }
}
.hover-image {
display: flex;
gap: 20px;
justify-content: center;
}
@media(min-width:768px) {
    .hover-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hover-image {
        width: 90%;
        max-width: 400px;
        height: auto;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 26px;
    }
    p {
        font-size: 30px;
        line-height: 1.6;
    }
    .BG {
        display: inline-block;
        height: 300px;
        width:800px;
    }
    #A {
        display: inline-block;
        height: 300px;
        width: 700px;
    }
    #IMG {
        display: inline-block;
        height: 200px;
        width: 300px;
    }
}
@media screen and (max-width: 768px) {
    body {
        padding: 15px;
    }
    img {
        width: 100%;
        height: auto;
    }
    #bg {
        padding-left: 15px;
        height: 400px;
        width: 100%;
    }
}
body {
    background-color: #F0F2F5;
}
