#mainside {
    margin-top: 50px;
    margin-right: 100px;
    /*margin-left: 100px;*/
    margin-left: auto;
    margin-bottom: 50px;
    width: 60%;
    float: right;
}

#post-title {
    font-size: xxx-large;
}

#post-content {
    background-color: white;
    padding: 10px 20px;
    /*font-family: Casablanca;*/
    font-size: large;
    border-radius: 10px;
}

#post-image {
    width: 70%;
}

#sidebar {
    width: 20%;
    margin-top: 50px;
    margin-right: 100px;
    margin-bottom: 100px;
    /*height: 500px;*/
    /*background-color: white;*/
    float: right;
    border-radius: 10px;
}

#likebox {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 10px;
    width: 90%;
    margin-top: 30px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0, .2);
}

#likebutton {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

#savebutton {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.tag_button {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag_button:hover {
    background: #133b77;
}

#post-sidebar-authorbox {
    background-color: white;
    padding: 20px;
    border-radius: 10px 0 10px 10px ;
}

#post-sidebar-authorbox-title {
    padding: 5px 10px;
    width: fit-content;
    background-color: white;
    border-radius: 20px 0 0 0;
}

@media (max-width: 995px) {
    #mainside {
        width: 100%;
        margin-right: 0;
    }
    #sidebar {
        width: 100%;
        margin-right: 0;
    }
}