 body{
    background-color: #007FFF;
}
.input-wrapper{
    width: 40%;
    margin: 0 auto;
    margin-top: 50px;
    padding: 5px 15px;
    background-color: #ecf0f1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 5px;
}
h2{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.5em;
    margin: 0px;
    margin-top: 10px;
}
img{
    height: 60px;
    width: 60px;
    border-radius: 30px;
}
.input{
    display: flex;
    margin-top: 15px;
}
input{
    margin-left: 15px;
    background-color:#ecf0f1;
    border: none;
    outline: none;
    font-size: 1.3em;
}
.stickers{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0px;
}
.box{
    cursor: pointer;
    display: flex;
    padding: 0 5px;
    align-items: center;
    gap: 5px;
    width: 135px;
    height:45px;
    border-radius: 5px;
    color: #03305d;
    background-color: #78add6;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.smallBox{
    width: 40px;
    text-align: center;
}
.box img{
    width: 30px;
    height: 30px;
}
.modal-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: 1.2s ease-in-out;
    opacity: 0;
    z-index: -999;
}
.input input{
    width:80%;
}

.inner-wrapper{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 5px;
    width: 40%;
    margin: 0 auto;
    margin-top: 10px;
    background-color:#ecf0f1;
    padding: 20px;
}
.heading3{
    display: flex;
    padding: 10px;
}
.heading3 h3{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 15px;
}
textarea {
    height: 150px;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
    background-color:#ecf0f1;
    font-size: 1.3em;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100%;
}
.addPost{
    display: flex;
    border: 1px solid gray;
    border-radius: 5px;
    position: relative;
    padding: 2px 15px;
}
.addPost h4{
    font-size: 1.2em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.addPost .img1{
    width:30px;
    height: 35px;
    position: absolute;
    right: 50px;
    top: 18px;
}
.addPost .img2{
    width:30px;
    height: 35px;
    position: absolute;
    right: 10px;
    top: 18px;
}
.c-button {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 0.9em 1.6em;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 20px 0px;
    width: 100%;
    z-index: 1;
  }
  
  .c-button--gooey {
    color: #06c8d9;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #06c8d9;
    border-radius: 0;
    position: relative;
    transition: all 700ms ease;
  }
  
  .c-button--gooey .c-button__blobs {
    height: 100%;
    filter: url(#goo);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -3px;
    right: -1px;
    z-index: -1;
  }
  
  .c-button--gooey .c-button__blobs div {
    background-color: #06c8d9;
    width: 34%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    transform: scale(1.4) translateY(125%) translateZ(0);
    transition: all 700ms ease;
  }
  
  .c-button--gooey .c-button__blobs div:nth-child(1) {
    left: -5%;
  }
  
  .c-button--gooey .c-button__blobs div:nth-child(2) {
    left: 30%;
    transition-delay: 60ms;
  }
  
  .c-button--gooey .c-button__blobs div:nth-child(3) {
    left: 66%;
    transition-delay: 25ms;
  }
  
  .c-button--gooey:hover {
    color: #fff;
  }
  
  .c-button--gooey:hover .c-button__blobs div {
    transform: scale(1.4) translateY(0) translateZ(0);
  } 
  .post-inner{
    text-align: center;
  }
@media only screen and (max-width:992px){
    .input-wrapper{
        width:80%;
    }

    .inner-wrapper{
        width: 80%;
        margin-top: 10px;
    }   
    .post-area{
        width:80%;
    }
}
@media only screen and (max-width:768px){
    .input-wrapper{
        width:80%;
    }

    .inner-wrapper{
        width: 90%;
        margin-top: 10px;
    }   
    .stickers{
        row-gap: 10px;
    }
}

@media only screen and (max-width:420px){
    .input-wrapper{
        width:82%;
        height: auto;
    }
    .inner-wrapper{
        width: 85%;
        margin-top: 10px;
    } 
    input{
        margin-left: 10px;
        font-size: 1em;
    }  
    .stickers{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media only screen and (max-width:360px){
    .input-wrapper{
        width:90%;
        height: auto;
    }
    .inner-wrapper{
        width: 85%;
        padding: 0px 20px;
    } 
}