* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    width: 100%;
    background-color: rgb(255, 255, 255);
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: rgb(204, 255, 222);
    background: linear-gradient(
        107deg,
        rgba(204, 255, 222, 1) 0%,
        rgba(151, 255, 147, 1) 24%,
        rgba(0, 252, 16, 1) 100%
    );
    padding: 1rem 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #000;
    z-index: 99998;
}

header .back {
    cursor: pointer;
    transform: scale(1.5);
    display: inline-block;
}

header .logo img {
    width: 100%;
    height: 10vh;
}

header .title {
    font-size: 1.3rem;
}

main {
    padding: 2rem;
    padding-top: 0.3rem;
}

main .card {
    /* background: #000; */
    width: 100%;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.06);
}

main .card .text {
    text-align: justify;
    margin-left: 3rem;
    width: 60%;
    background: #fff;
    padding: 20px;
}

main .card .text h2,
main .card .text p {
    padding-bottom: 1.5rem;
}

main .card .text p,
main .card .text h2 {
    margin-left: 6rem;
}

main .card .text a {
    margin-left: 8rem;
}

main .card .image-wrapper {
    position: relative;
    width: 50%;
    height: 60vh;
    /* border-radius: 50px; */
    overflow: hidden;
}

main .card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

main .card .image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 10%,
        rgba(255, 255, 255, 0) 50%
    );
}

footer {
    background: rgb(204, 255, 222);
    background: linear-gradient(
        107deg,
        rgba(204, 255, 222, 1) 0%,
        rgba(151, 255, 147, 1) 24%,
        rgba(0, 252, 16, 1) 100%
    );
    padding: 0.5rem;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    html {
        font-size: 80%;
    }
    main .card .text {
        text-align: justify;
        margin-left: 0;
        width: 60%;
        background: #fff;
        padding: 20px;
    }
    main .card .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 65%;
    }