*{
   box-sizing:border-box;
   margin:0;
   padding:0;
   font-family:Verdana, Geneva, Tahoma, sans-serif
}
body{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    background:linear-gradient(125deg,#8e44ad,#3498db);
}
.container{
    text-align:center;
    padding: 100px 75px;
    border-radius:15px;
    background:rgba(252, 247, 247, 0.1);
    max-width:500px;
    color:white;
}

h1{

    font-size:35px;
    margin-bottom:25px;
    font-weight:bold;
}
p{
    font-size:20px;
    margin-bottom: 25px;
    color:aliceblue;
}
.container{
    display:flex;
    flex-direction: column;
    gap: 20px;
}
textarea{
    padding :15px;
    width: 100%;
    border-radius: 8px;
    border:none;
    resize:none;
    font-size:15px;
    color:#333;
    outline:none;
    height:120px;
}
.buttons{
    display:flex;
    justify-content:space-around;
    gap: 20px;
}
button{
    padding: 15px 25px;
    border:none;
    color:white;
    font-size:16px;
    border-radius: 8px;
    cursor:pointer;
    background:linear-gradient(125deg,#8e44ad,#8e44ad);
}
.copy-button{
   padding: 15px 25px;
   border:none;
   color:white;
   font-size: 15px;
   border-radius: 8px;
   cursor:pointer;
   margin-top: 15px;
}
.clear-button{
    background:red;
    border:none;
    font-size:15px;
    cursor:pointer;
    margin-top:10px;
    width: 150px;
}
.sticker{
    width: 150px;
    position:fixed;
}
.s1{
    top:20px;
    right:20px;
}
.s2{
    bottom:20px;
    left:20px;
}
