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

body {
    padding: 1em;
    background-color: #383535;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
}

.wrapper img {
    width: 100%;
    border-radius: 0.8em;
}

.container, #preview-container {
    background-color: #fff;
    border-radius: 0.8em;
    padding: 1em;
}

.container p {
    font-size: 0.8em;
    line-height: 1;
    margin-top: 0.6em;
    margin-bottom: 0.6em;
    color: #606060;
    text-align: justify;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
}

button, a {
    text-decoration: none;
    border: none;
    outline: none;
    font-size: 1.2em;
    background-color: #fff;
    padding: 1em 2em;
    cursor: pointer;
    border-radius: 0.5em;
    color: #000;
}

.hide {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wrapper {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    button, a {
        width: 100%;
        text-align: center;
    }
}
