*{
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    list-style-type: none;
    position: relative;
}

body{
    background-image: linear-gradient( to top right,rgb(67, 11, 61),rgba(43, 15, 43, 0.745),rgb(63, 13, 46),rgb(223, 18, 203));
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 100px 1fr 150px;

    grid-template-areas: 
    "header header"
    "aside main"
    "footer footer";
    
}

header{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: bisque;
    gap: 30px;
    grid-area: header;
    
}

header input{
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 80%;
    height: 80px;
    border-radius: 10px;
    border: 10px solid rgba(125, 20, 20, 0.547);
    opacity: 0.5;

}

main{
    grid-area: main;

}

span{
    background-color: rgba(10, 54, 69, 0.573);
    padding: 10px;
    border-radius: 10px;
    color: white;
    
}
span:hover{
    background-color: white;
    color: black;
    cursor: pointer;
    transform: scale(1.2);
}



.post-tags{
    padding: 20px;
    display: flex;
    justify-content: start;
     gap:10px;
     width: 90%;
     border-bottom:1px solid gray;
    }

.post-tags span{
    background-color: rgb(208, 102, 137);

}
.reactions{
    padding: 15px;
    display: flex;
    justify-content: start;
    gap: 20px;
}

aside{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    grid-area: aside;
    position: relative;
    height: 22%;

}



.post-card{
    background-color: rgb(235, 234, 233);
    border-radius: 30px 40px 0px 100px;
    padding: 25px;
    gap: 20px;
    margin: 2% 10% 5% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 6px solid rgb(208, 191, 191);

}

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    grid-area: footer;
    color:white;
    bottom: 0px;


}



.views{
    color: rgb(59, 59, 170);
    cursor: pointer;
}

.likes{
    color: rgb(192, 56, 56);
    cursor: pointer;

}

.dislikes{
    color: rgb(69, 66, 66);
    cursor: pointer;

}   

button{
    margin: 10px;
    padding: 10px;
    width: 100px;
    height: 50px;
    border-radius: 20px;
    background-color: rgb(117, 6, 117);
}
