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

body{
    font-family:Arial, Helvetica, sans-serif;

    background:linear-gradient(
        90deg,
        #f6d8e6,
        #dceeff
    );

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
}

.card{

    position:relative;
    overflow:hidden;

    width:800px;

    background:white;

    border-radius:35px;

    padding:50px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.cat-logo{

    width:120px;

    position:absolute;

    top:15px;
    right:1px;

    transform:rotate(10deg);
}

.tag{

    display:inline-block;

    padding:12px 20px;

    background:#efe3ff;

    color:#7a37ff;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:25px;
}

h1{

    font-size:70px;

    margin-bottom:15px;

    max-width:75%;
}

.desc{

    color:#666;

    font-size:18px;

    margin-bottom:35px;

    max-width:75%;
}

textarea{

    width:100%;
    height:220px;

    border:3px solid #ececec;

    border-radius:25px;

    padding:25px;

    resize:none;

    font-size:28px;

    margin-bottom:20px;
}

.chips{

    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;
}

.tagBtn{

    border:none;

    background:#efe3ff;

    color:#7a37ff;

    padding:12px 20px;

    border-radius:30px;

    cursor:pointer;

    font-size:16px;
}

.preview{

    background:#0d0d0d;

    color:white;

    border-radius:25px;

    padding:25px;

    margin-bottom:25px;
}

.preview-title{

    color:#999;

    margin-bottom:10px;
}

#previewText{

    font-size:22px;

    line-height:1.5;
}

.info-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

    color:#666;
}

.buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

button{

    border:none;

    padding:16px 26px;

    border-radius:18px;

    font-size:17px;

    cursor:pointer;
}

.tweet-btn{

    background:black;
    color:white;
}

.message{

    margin-top:25px;

    background:#f5f5f5;

    padding:20px;

    border-radius:18px;

    font-size:18px;
}

@media(max-width:768px){

    .card{
        padding:30px;
    }

    h1{
        font-size:42px;
    }

    textarea{
        height:180px;
        font-size:22px;
    }

    .cat-logo{
        width:50px;
    }
}