*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: white;
}

body{
    background: rgb(2,0,36);
    background: linear-gradient(360deg, rgba(2,0,36,1) 0%, rgba(24,2,77,1) 90%);
    background-attachment: fixed;
    display: none;
    height: 100rem;
    margin: 2rem;
    display: flex;
}

.main-section{
    width: 100%;
}

header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
}

.header-left{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.header-button-arrow{
    border-radius: 50%;
    height: 3.5rem;
    width: 3.5rem;
    border: none;
    background-color: rgba(0, 0, 0, .7);
}

header .icon{
    font-size: 2rem;
    color: white;
}

.header-left .icon{
    font-size: 2rem;
    color: white;
    opacity: 70%;
}

.header__mid{
    display: flex;
    background-color: #191919;
}

.header-right{
    display: flex;
    gap: 1rem;
}

.header-right .app{
    display: flex;
}

.header-button-app{
    padding: 1rem;
    border: none;
    background-color: rgba(0, 0, 0, .7);
    color: white;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    border-radius: 50px;
}

.header-button-app h3{
    font-size: 2rem;
    font-weight: 600;
}

.header-button-bell{
    border-radius: 50%;
    height: 3.5rem;
    width: 3.5rem;
    border: none;
    background-color: rgba(0, 0, 0, .7);
}

.header-button-user{
    border-radius: 50%;
    height: 3.5rem;
    width: 3.5rem;
    border: none;
    background-color: rgba(0, 0, 0, .7);
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post{
    width: 40%;
    background-color: #191919;
    padding: 3rem 1.6rem;
    border: 1px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.userSection{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.username{
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.name{
    font-size: 1.4rem;
    font-weight: 300;
    color: gray;
}

.day{
    font-size: 1.2rem;
    font-weight: 300;
    color: gray;
}

.content{
    text-transform: capitalize;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .8);
    font-family: inherit;
}

.postInteraction{
    margin-top: 2.4rem;
    display: flex;
    gap: 1.4rem;
}

.postInteraction > i{
    font-size: 1.4rem;
    color: gray;
}