* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color:#090909;
    color: white;
    margin-top: 8vh;
    height: 92vh;
}

main {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2rem;
}

.side-container {
    position: fixed;
    top: 8vh;
    bottom: 0;
    right: 0;
    width: 20%;
    max-width: 350px;
    background-color: #464646;
    display: flex;
    flex-direction: column;
    align-items: center;
}

i {
    background-color: #333;
    padding: 0.5rem;
    border-radius: 50%;
}

a {
    text-decoration: none;
    color: white;
}

a:link {
    color: white;
    text-decoration: none; 
}

a:visited {
    color: white;
    text-decoration: none; 
}

input[type="submit"] {
    font-weight: bold;
    background-color: blue;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

input[type="submit"]:hover {
    background-color: rgb(66, 148, 255);
}

input[type="submit"]:active {
    background-color: rgb(0, 14, 209);
}

button {
    font-weight: bold;
    background-color: blue;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: rgb(66, 148, 255);
}

button:active {
    background-color: rgb(0, 14, 209);
}

textarea {
    width: 100%;
    height: 3rem;
    font-size: 1.2rem;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.file-input {
    display: none;
}
  
.custom-file-label {
    display: inline-block;
    cursor: pointer;
    margin-right: 1rem;
}

.author-info-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
}

.profile-pic-mini {
    height: 50px;
    width: 50px;
    margin: 5px 5px 0 0;
    margin-right: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.post-pic-mini {
    height: 100px;
    display: block;
    margin-right: 1rem;
}

@keyframes blink {
    0% { background-color: #464646; }
    50% { background-color: #090909; }
    100% { background-color: #464646; }
}

.blink {
    animation: blink 1s step-end infinite;
}