﻿#name {
    position: relative;
    float: right;
    font-size: 1.5vw;
    top: 12px;
    left: 60vw;
}

#return {
    position: fixed;
    top: 10%;
    background: #283618ff;
    color: white;
    transform: translateX(-5%);
    padding: 10px 20px;
    border-radius: 0 10px 10px 0;
    font-size: 1.2vw;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

#return:hover {
    background-color: #606c38ff;
    transform: translateX(0) scale(1.05);
    box-shadow: 4px 4px 12px rgba(0,0,0,0.25);
}

#post-content{
    width: 60%;
    padding: 60px 30px 30px 30px;
    margin: auto;
}
