@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Comic Relief", system-ui;
    box-sizing: border-box  ;
}

body {
    background: #ff9bff;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    color: #000000;
    padding-top: 4%;
    padding-left: 5%
}

.container h1 {
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
}

.container h1 img {
    width: 60px;
}

.container button img{
    width: 25px;
    margin-right: 8px;
}

.container button {
    display: flex;
    align-items: center;
    background: #e218fd;
    color: #fff;
    font-size: 20px;
    outline: 0;
    border: 0;
    border-radius: 40px; 
    padding: 15px 25px;
    margin: 30px 0 20px;
    cursor: pointer;
}

.input-box {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-height: 150px;
    background: #fff;
    color: #333;
    margin: 20px 0;
    padding: 20px;
    border-radius: 5px;
}

.input-box img {
    width: 25px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}