@import url(https://db.onlinewebfonts.com/c/8ae855a9764167194fdb7fa584f99ba8?family=LHF+Spencer);

@font-face {
    font-family: "LHF Spencer";
    src: url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.eot");
    src: url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/8ae855a9764167194fdb7fa584f99ba8.svg#LHF Spencer")format("svg");
}

body{
    background-color: #184256;
    color: #FEFEFE;
    font-size: 15px;
    margin: 0;
    font-family: "Work Sans", sans-serif;
}

h1{
    font-family: "LHF Spencer";
    color: #DEAE4A;
    letter-spacing: 2px;
}

.logo{
    width: 76px;
}

header, main{
    display: flex;
    align-items: start;
    justify-content: center;
}

.header-container{
    padding: 10px 0;
    display: flex;
    align-items: start;
    justify-content: center;
    border-right: 1px solid #ffffff1c;
    border-left: 1px solid #ffffff1c;
    width: 700px;
}

.container{
    display: flex;
    align-items: start;
    justify-content: center;
    border: 1px solid #ffffff1c;
    width: 700px;

}

.inner-container{
    margin: 0;
}

.profile-pic{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.input-area{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #ffffff1c;
    
}

.input-area, .tweet-inner{
    padding: 20px;
    box-sizing: border-box;
    
}

.tweet-inner{
    border-bottom: 1px solid #ffffff1c;
}

.input-area-inner, .tweet-inner{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 0 10p;
}


.textarea, .reply-textarea{
    width: 100%;
    height: 116px;
    resize: none;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: inherit;
    background-color: #184256;
    border: none;
    color: inherit;
    font-family: inherit;
}


textarea:hover{
    cursor: pointer;
}

textarea::placeholder{
    color: rgba(255, 255, 255, 0.459);
}

.reply-textarea{
    height: 50px;
}

.indent{
    padding-left: 50px;
}

.publish-btn{
    padding: 15px 33px;
    border-radius: 10px;
    border: none;
    font-size: inherit;
    font-weight: 600;
    background-color: #DBCE85;
    color: #184256;
    transition: transform 0.3s ease-in-out;
    font-family: inherit;
}

.publish-btn:hover{
    background-color: #DEAE4A;
    transform: scale(.99);
    cursor: pointer;
}

.tweet-text{
    width: 100%;
    box-sizing: border-box;
}

.handle{
    font-weight: 700;
}

.tweet-details{
    display: flex;
    justify-content: space-between;
    color: #F5E6CA;
}

.tweet-detail{
    width: 25%;
}

.tweet-icon i {
    transition: transform 0.3s ease-out;
}

.tweet-icon:hover i, .icon:hover {
    transform: scale(1.2);
    color: #DEAE4A;
    cursor: pointer;
}

.liked{
    color: #DEAE4A;
}

.retweeted{
    color: #DEAE4A;
}

.hidden{
    display: none;
}