* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Poppins', sans-serif;
  }

body {
    background-color: #E0E0E0 ;
  }

  .content-container {
    margin-left: 250px;
    margin-top: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-image img {
    width: 100%; 
    max-width: 600px; 
    height: auto;
}

.description {
    margin-top: 30px;
    font-size: 1.4em;
    width: 60%;
}

@media only screen and (min-width: 600px) and (max-width: 900px) {
    .content-image img {
        max-width: 80%; /* Larger than mobile, smaller than desktop */
    }

    .description {
        font-size: 1.2em; /* Slightly larger font */
        width: 80%; /* Narrower than mobile */
    }
}

@media only screen and (min-width: 900px) {
    .content-image img {
        max-width: 600px; /* Fixed max width */
    }

    .description {
        font-size: 1.4em; /* Larger font */
        width: 60%; /* As per your original design */
    }
}

