@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    color: white;
}

body {
    font-family: "Goldman", sans-serif;
    background-color: #3C3D37;
}

.logo {
    font-size: xx-large;
    color: white;
}

.topnav {
    background-color: #181C14;
    color: white;
    display: flex;
    justify-content: space-around;   
    padding: 10px 15px;
    align-items: center;
    margin-bottom: 30px;
}

.links ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.links a {
    border-radius: 5px;
    text-decoration: none;
    border: 1px white solid;
    color: white;
    padding: 5px;
    transition-duration: 2s, 2s;
}

.links a:hover {
    background-color: #697565;
    color: white;
}

.post-form {
    padding: 25px;
    border: 5px black solid;
    background-color: #181C14;
    border-radius: 25px;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.post-title {
    font-size: x-large;
    margin-bottom: 15px;
}

input {
    font-size: large;
    text-indent: 5px;
    color: rgb(138, 0, 138);
    background-color: rgb(24, 24, 24);
    border: 3px rgb(24, 24, 24) solid;
    border-left-color: rgb(138, 0, 138);
    padding: 5px;
}

.post-list {
    padding: 25px;
    background-color: #181C14;
}

input[name="title"] {
    width: 100%;
}

textarea {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 20px;
    text-indent: 5px;
    font-size: larger;
    color: #8a008a;
    background-color: rgb(24, 24, 24);
    border: 3px rgb(24, 24, 24) solid;
    border-left-color: #8a008a;
    padding: 5px;
    width: 100%;
    resize: vertical;
    min-height: 80px;
}

button {
    width: 100%;
    color: #8a008a;
    background-color: black;
    border: 1px #8a008a solid;
    padding: 5px;
    margin-top: 20px;
    font-size: larger;
    cursor: pointer;
    transition-duration: 2s, 2s;
}

button:hover {
    background-color: #8a008a;
    color: white;
}

.post {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #3C3D37;
}

.username {
    word-wrap: break-word;
    font-size: large;
    margin-bottom: 10px;
    border: 1px rgb(24, 24, 24) solid;
    background-color: rgb(24, 24, 24);
    border-left-color: #8a008a;
    padding: 9px;
    border-radius: 25px;
}

.title {
    margin-top: 10px;
    font-size: large;
    word-wrap: break-word;
    margin-bottom: 10px;
    font-weight: bold;
    opacity: .8;
    width: 100%;
}

.description {
    margin-bottom: 10px;
    margin-top: 10px;
    word-wrap: break-word;
    font-size: medium;
    width: 100%;
}

.created_at {
    float: right;
    font-size: medium;
    font-weight: bold;
    opacity: .8;
    border: 1px rgb(24, 24, 24) solid;
    background-color: rgb(24, 24, 24);
    padding: 9px;
    border-left-color: #8a008a;
    border-radius: 25px;
}

.delete-post-button {
    margin-top: 20px;
}

.delete-post-button a {
    background-color: black;
    color: red;
    text-decoration: none;
    border: 1px red solid;
    padding: 5px;
    transition-duration: 2s, 2s;
    border-radius: 15px;
}

.delete-post-button a:hover {
    background-color: red;
    color: white;
}

.bottomnav {
    background-color: black;
    overflow: hidden;
    bottom: 0;
    position: fixed;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 60px;
    padding: 10px;
}

.copyrights {
    float: left;
    padding-right: 40px;
    padding-left: 40px;
}

.sm {
    float: right;
    padding-right: 40px;
    padding-left: 40px;
    transition-duration: 2s, 2s;
}

.go-up a {
    padding: 5px;
    margin: 20px;
    margin-bottom: 50px;
    bottom: 0;
    position: fixed;
    font-size: x-large;
    border: 1px #8a008a solid;
    color: #8a008a;
    transition-duration: 2s, 2s;
}

.go-up a:hover {
    background-color: #8a008a;
    color: white;
}