* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: linear-gradient(135deg, #cf9aff, #95c0ff);
}

.container {
    color: #fff;
    margin: 1%;
    width: 100%;
    min-height: 100vh;
    padding-top: 4%;
    padding-left: 10%;
}

.container h1 {
    display: flex;
    align-items: center;
    padding-bottom: 0.1%;
    font-size: xxx-large;
    font-weight: 800;
    border-bottom: solid black;
    width: 30%;
    margin-bottom: 1%;
}

.container img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.app {
    margin: 2%;
}

.app img {
    width: 20px;
    height: auto;
}

.app button {
    width: 80px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    cursor: pointer;
}

textarea {
    margin-bottom: 0.5%;
}

#create {
    display: flex;
    align-items: center;
    background: linear-gradient(#9418fd, #571094);
    color: #fff;
    font-size: 16px;
    outline: 0;
    border: 0;
    border-radius: 40px;
    padding: 15px 25px;
    margin: 30px 0 20px;
    cursor: pointer;
}

.text {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 150px;
    background: #fff;
    color: #333;
    padding: 20px;
    outline: 0;
    border-radius: 5px;
    resize: none;
}