.founder {
    display: flex;
    justify-content: center;
    padding-top: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
}
.founderHolder {
    width: 1150px;
    display: flex;
    align-items: center;
    position: relative;
}

.founderHolder img[src$="Images/Logo/jessabelleAndJoshua.jpg"] {
    width: clamp(50px, calc(100px + (300 * ((100vw - 500px) / 180))), 400px);
    margin-right: -50px;
    z-index: 1;
    border-color: white;
    border-style: solid;
    border-radius: 20px;
    padding: 5px;
}
  
.founderContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    padding-left: 100px;
    padding-left: clamp(20px, calc(10px + (80 * ((100vw - 500px) / 300))), 100px);
    padding-right: 10px;
    padding-bottom: 30px;
    background-color: rgb(184, 247, 184);
    border-radius: 20px;
}
.founderContainer h1{
    font-size:  clamp(24px, calc(24px + (16 * ((100vw - 300px) / 250))), 40px);
    font-weight: normal;
    margin: 0;
}
.founderContainer h2 {
    font-size: clamp(8px, calc(8px + (6 * ((100vw - 300px) / 250))), 14px);
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
}
.founderContainer p {
    font-size: clamp(12px, calc(12px + (8 * ((100vw - 300px) / 250))), 20px);
    margin-bottom: clamp(12px, calc(12px + (8 * ((100vw - 300px) / 250))), 20px);
    margin-top: clamp(12px, calc(12px + (8 * ((100vw - 300px) / 250))), 20px);
}
.founderContainer h2::after {
    content: ""; /* Insert an empty string content for the pseudo-element */
    display: block; /* Make the pseudo-element behave like a block element */
    width: 100%; /* Make the width of the pseudo-element 100% of its parent element (h2) */
    height: 2px; /* Set the height of the pseudo-element to 2px (acting like an underline) */
    background-color: black; /* Set the background color of the pseudo-element to a light gray */
    bottom: -8px; /* Position the pseudo-element 8px below the bottom of the h2 element */
    left: 0; /* Align the pseudo-element to the left edge of the h2 element */
}
  
.socialMedia {
    display: flex;
    gap: 5px;
 }
.socialMedia img {
    width: clamp(25px, calc(25px + (10 * ((100vw - 300px) / 250))), 35px);
    height: 35px;
}
.socialMedia img:hover {
    filter: grayscale(100%);
    cursor: pointer;
    transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
    .founderHolder {
        width: 97vw;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 680px) {
    .founderHolder img[src$="Images/Logo/jessabelleAndJoshua.jpg"] {
        display: none;
    }
    .founderContainer {
        margin: 0;
        padding: 10px;
        padding-top: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
        padding-bottom: clamp(12px, calc(12px + (38 * ((100vw - 300px) / 250))), 50px);
    }
}
  
  