body {
    background-image: url("../assets/earthtexture.webp");
    background-size: 96px;
    background-repeat: repeat;
    margin:0;
    color: #dce1b9;
}

table {
    margin: 8px;
    max-width:50%;
    color: black;
}

table.post { 
    table-layout:fixed;        
    background-color: #acb199; 
    /* border-collapse: collapse; */
    margin-left: 10pt;
    margin-right: 10pt;
    border: 3px solid #424222;
    border-radius: 5px;
}

table.post td { 
    overflow: hidden; 
    word-break:break-word; 
}
table.post th {  
    text-align: left;
}

table.oppost {
    table-layout:fixed;        
    /* border-collapse: collapse; */
    background-color: #dce1b9; 
    padding: 5px;
    border: 3px solid #525232;
    border-radius: 5px;
}

table.oppost td { 
    overflow: hidden; 
    word-break:break-word; 
}

table.oppost th {  
    text-align: left;
}

#postForm {
    color: #ccd199;
    width:100%;
    position: sticky;
    top: 0;
	left: 0;
	background-position: right;
	background-image: url("../assets/Banner.webp");
	background-size:1500px;
	background-repeat: no-repeat;
	border-bottom: 3px solid #1c2119;
}

form {
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 25%, rgba(0,0,0,0) 100%);
	padding:7px;
	/* width:25%; */
}


a {
    background-color: #acb189; 
    margin: 8px;
    color: #222222;
    padding: 2px;
}

a:hover {
    color: #bdb298;
    background-color: #4c3129; 
}

hr {
    margin-left:0;
    max-width:50%;
}

button {
	color: #ccd199;
	font-weight: bold;
	background: transparent;
	cursor: pointer;
}

button:hover {
	color: #bdb298;
	border-color: #bdb298;
	text-decoration: underline;
}

button:disabled {
	color: #7a7a7a;
	border-color: #7a7a7a;
	cursor: default;
}

button:disabled:hover {
	color: #7a7a7a;
	border-color: #7a7a7a;
	text-decoration: none;
}

.backlink {
    position: sticky;
    top: 230px;
    left: 50%;
    width: 100%;
	color: #ccd199;
	font-weight: bold;
	background: transparent;
	cursor: pointer;
}

input {
    background-color:#dce1b9;
}

textarea {
    /* resize: horizontal; */
    background-color:#dce1b9;
}

@media screen and (max-width: 800px) {
    table {
        max-width: 100%;
        margin: 8px;
    }
    body {
        align-items: center;
    }
    hr {
        max-width:100%;
    }
    form {
	    width:100%;
    }

    .backlink{
        left:85%;
    }
}

