
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 1024px;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.angry-cloud {
    width: 100px;
    height: 100px;
    margin-right: 16px;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.description {
    color: #555;
}

.main-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.input-section,
.output-section {
    width: 48%;
    padding: 16px;
}

.label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.input-textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.output-text {
    width: 100%;
    height: 150px;
    background-color: #000;
    color: #e53e3e;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.angry-button {
    padding: 12px 24px;
    background-color: #e53e3e;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.angry-button:hover {
    background-color: #c53030;
}

.whatsapp-section {
    display: flex;
    align-items: center;
}

.whatsapp-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-right: 8px;
    width: 200px;
}

.whatsapp-button {
    padding: 12px 24px;
    background-color: #38a169;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #2f855a;
}