* {
    box-sizing: border-box;
    margin: 0;
    color: white;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(24, 24, 24);
}

.logo {
    font-size: xx-large;
    float: left;
    color: rgb(138, 0, 138);
}

.main {
    padding-left: 30px;
    padding-right: 30px;
}

.topnav {
    background-color: black;
    color: white;
    position: relative;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    width: 100%;
}

.links {
    padding: 10px;
}

.links li {
    list-style: none;
    float: right;
    margin-right: 20px;
}

.links a {
    text-decoration: none;
    border: 1px rgb(138, 0, 138) solid;
    color: rgb(138, 0, 138);
    padding: 5px;
    transition-duration: 2s, 2s;
}

.links a:hover {
    background-color: rgb(138, 0, 138);
    color: white;
}

.sign-form {
    padding: 25px;
    border: 5px black solid;
    background-color: black;
    border-radius: 25px;
    position: relative;
    border-left-color: rgb(138, 0, 138);
    width: 100%;
    margin-bottom: 60px;
}

.sign-title {
    color: rgb(138, 0, 138);
    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;
}

input[name="password"] {
    width: 70%;
}

input[name="confirmPassword"] {
    width: 100%;
}

input[name="username"] {
    width: 25%;
    margin-right: 4%;
}

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;
}

.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;
}

.post {
    border: 3px #8a008a solid;
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.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: larger;
    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: large;
    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;
}

.post-title {
    color: rgb(138, 0, 138);
    font-size: x-large;
    margin-bottom: 15px;
}

.main {
    padding-left: 30px;
    padding-right: 30px;
}

.post-list {
    padding: 25px;
    border: 5px black solid;
    background-color: black;
    border-radius: 25px;
    position: relative;
    border-left-color: #8a008a;
    width: 100%;
    margin-bottom: 60px;
}

.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;
}

.sign a {
    color: white;
    border: 1px white solid;
    transition-duration: 2s, 2s;
}

.sign a:hover {
    color: #8a008a;
    background-color: white;
}