html, body {
    height: 100%;
    margin: 0;
    background-color: #000000;
    color: #f1f1f1;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    color: #ffffff;
    text-align: left;
    font-family: 'Actor', 'Actor Placeholder', sans-serif;
    font-size: 5rem;
    margin: 0 0 0 5vw;
}

header h4 {
    color: #ffffff;
    text-align: left;
    font-family: 'Actor', 'Actor Placeholder', sans-serif;
    font-size: 3rem;
    margin: 0 0 0 5vw;
}

main {
    flex: 1;
    padding: 0;
}

.row.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.row.no-gutters > [class^="col"] {
    padding-left: 0;
    padding-right: 0;
}

.post {
    background-color: #000000;
}

.post img {
    width: 100%;
    height: auto;
    display: block;
}

.post-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

small {
    color: #a1a1a1;
    font-size: 1.5rem;
    font-family: 'Actor', 'Actor Placeholder', sans-serif;
    margin-left: 5vw;
    display: block;
    text-align: left;
}

.post-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.post-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    z-index: 99999999999;
}

.post-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}