body {
    font-family: Trebuchet MS, sans-serif;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #141414;
    overflow-x: hidden;
    overflow-y: auto;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    background-color: #454545;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 7vh;
    line-height: 7vh;
}

.nav-bar {
    text-align: center;
    margin: 0;
    padding: 0 10px 0 10px;
    height: 100%;
}

header a {
    color: #b7b7b7;
    font-size: 3vh;
    text-decoration: none;
}

header a:hover {
  color: #e6e6e6;
}

header a:active {
  color: #b7b7b7;
}

#home-logo-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

#home-logo {
    height: 55%;
}

main {
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    color: #ffffff;
}

#most-liked-posts-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: space-evenly;

    padding: 20px;
}

.post {
    padding: 10px;
    margin: 5px;
    background-color: rgba(183, 183, 183, 0.35);
    width: 13vw;
    height: auto;
    border: #b7b7b7 solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.embed {
    max-width: 90%;
    max-height: 90%;
    border: none;
}

.button {
    color: #ffffff;
    background-color: rgba(183, 183, 183, 0.35);
    margin: 20px 0 0 20px;
    padding: 5px;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.button:active {
    position: relative;
    top: 1px;
}

.button:hover {
    background-color: rgba(210, 210, 210, 0.35);
}

.tag-artists {
    display: block;
    margin: 4px;
    font-family: 'Lucida Console';
    font-size: 12px;
    color: #b70f0f;
    text-decoration: none;
}

.tag-characters {
    display: block;
    margin: 4px;
    font-family: 'Lucida Console';
    font-size: 12px;
    color: #138a36;
    text-decoration: none;
}

.tag-franchise {
    display: block;
    margin: 4px;
    font-family: 'Lucida Console';
    font-size: 12px;
    color: #d50a7a;
    text-decoration: none;
}

.tag-general {
    display: block;
    margin: 4px;
    font-family: 'Lucida Console';
    font-size: 12px;
    color: #35a7ff;
    text-decoration: none;
}

.tag-metadata {
    display: block;
    margin: 4px;
    font-family: 'Lucida Console';
    font-size: 12px;
    color: #fb8500;
    text-decoration: none;
}

#tags-container {
    display: flex;
    flex-direction: column;
}

h2 {
  margin-bottom: 1rem;
  border-bottom: 2px solid #454545;
  padding-bottom: 0.5rem;
  color: #ffffff;
}

.indent {
    padding-left: 50px;
}