@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

.para-text{
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 2rem;
    padding-bottom: 1rem;
}
.header-text{
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}
.center{
    
    text-align: center;
}
.text-style-none{
    text-decoration: none;
    color: black;
}
.h1Text{
    font-size: 72px;
    padding-bottom: 4rem;
    max-width: 920px;
    margin: 0 auto;
}

.h2Text{
    font-size: 48px;
}


/* End Variables*/


.about-me{
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    padding-bottom: 2rem;
}
.about-me__text{
    font-size: 2.5rem;
}
.page-content{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.home-header__content{
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
}

.home-header__text{
    text-align: center;
}
.body-cards{
    margin: 0 auto;
    display: grid;
    gap: 30px;
    margin-bottom: 3rem;
}
.body-cards__three{
    grid-template-columns: repeat(3, 1fr);
}
.body-cards__two{
    grid-template-columns: repeat(2, 1fr);
    width: 66%;
}
.body-card{
    box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
    border-radius: 16px;
    max-width: 500px;
    height: max-content;
}
.body-cards__images{
    border-radius: 16px 16px 0 0;
    width: 100%;
    object-fit: cover;
    height: 300px;
}
.body-cards__text{
    padding: 0 1rem 3rem 1rem;
    height: max-content;
}
.cta-section{
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}
.cta-section__button{
    height: fit-content;
    width: fit-content;
    border: 3px solid black;
    background-color: white;
    text-decoration: none;
    color: black;
    font-size: 2rem;
    padding: 1rem;
    margin: auto 0;

}
.footer{
    text-align: center;
}


@media (max-width: 768px) {


    .h1Text {
        font-size: 40px;
        line-height: 1.2;
        padding-bottom: 2rem;
        text-align: center;
    }

    .h2Text {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }

    .para-text,
    .about-me__text {
        font-size: 1.2rem;
        line-height: 1.6;
    }


    .page-content {
        padding: 0;
        max-width: 100%;
    }


    .about-me {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .about-me__text {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .body-cards__three,
    .body-cards__two {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .body-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .body-cards__images {
        height: auto;
    }


    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .cta-section__button {
        margin: 1rem auto 0;
        font-size: 1.5rem;
        padding: 0.8rem 1.6rem;
    }

    .home-header__content {
        justify-content: center;
        padding: 1rem 0;
    }

    .home-header__content svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {

    .h1Text {
        font-size: 32px;
    }

    .h2Text {
        font-size: 26px;
    }

    .about-me__text {
        font-size: 1.2rem;
    }

    .cta-section__button {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
}
