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

.jua-regular {
    font-family: "Jua", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2rem, 5vw, 3.125rem);
}

.svgText {
    fill: white;
    stroke: #C65413;
    stroke-width: 15px;
    stroke-linejoin: round;
    paint-order: stroke;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    background: linear-gradient(to bottom right, #9e2253, #2d2350);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 100vh;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px;
    overflow-x: hidden;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #9c35c3;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: #fff;
    margin-bottom: 15px;
}

p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #fff;
    margin-bottom: 15px;
}

.button-group {
    display: flex;
    gap: 10px;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #9c35c3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: clamp(1rem, 3vw, 1.5rem);
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #7a2b9f;
}

.image-container img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.perspective {
    transform: perspective(1000px) rotateX(4deg) rotateY(-24deg) rotateZ(4deg);
    box-shadow: 24px 16px 64px 0 rgba(0, 0, 0, 0.08);
}

/* Media Queries */
@media (max-width: 992px) {
    .perspective {
        transform: perspective(800px) rotateX(2deg) rotateY(-12deg) rotateZ(2deg);
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        gap: 20px;
        overflow-y: auto;
    }

    .perspective {
        transform: none;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
        gap: 15px;
    }

    button {
        padding: 10px 20px;
    }
}