.supportus {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.support-p {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    background-color: var(--clr5);
    justify-content: space-between;
    align-items: center;
    clip-path: polygon(0 0, 0 100%, 100% 90%, 100% 10%);
    color: var(--textColorLight);
    overflow: hidden;
}

.Qr {
    border-radius: 5px;
    height: 20rem;
}

p {
    padding-left: 10rem;
    padding-right: 10rem;
    text-align: start;
    font-size: 1.2rem;
    margin: 0;
}

.title {
    font-size: 3rem;
	margin:0.5rem;
    text-align: center;

}

.link>a {
    color: var(--textColorDark);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5rem;
}

.link>a:hover {
    text-decoration: underline;
}


@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
		margin-top: 4em;
    }


    .support-p {
        flex-direction: column;
        height: auto;
        padding: 2rem 1rem;
        clip-path: none;
    }

    p {
        font-size: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    img {
        border-radius: 15px;
        scale: 0.8;
    }
}