body {
    font-family: 'Outfit', sans-serif;
}

header {
    background-color: rgb(228, 228, 228);
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgb(228, 228, 228);
    border-top: 2px solid rgba(0, 0, 0, 0.5);
}

/* invert color since wireframe has black bg white person, then re-invert for other users to distinguish posts */
img {
    filter: invert(100%);
    max-width: 60px;
    max-height: 30px;

    /* when you click, redirect to user profile */
    &:hover {
        cursor: pointer;
    }
}

.username {
    color: rgb(128, 128, 128, 0.75);
}

.entry {
    margin-top: 12px;
    margin-left: 24px;
    margin-right: 24px;
}

main {
    /* desktop styling */
    @media (min-width: 576px) {
        #outer {
            width: 600px;
            height: 200px;
        }

        #howlText {
            width: 550px;
            height: 100px;
        }

        #prevHowls {
            width: 600px;
            min-height: 100px;
            height: auto;
        }
    }

    /* mobile stying */
    @media (max-width: 575px) {
        #howler-name {
            text-align: left;
        }

        #outer {
            width: 400px;
            height: 200px;
        }

        #howlText {
            width: 350px;
            height: 100px;
        }

        #prevHowls {
            width: 400px;
            min-height: 75px;
            height: auto;
        }
    }
}

#btn {
    color: black;
    box-shadow: 2.5px 2.5px 0.5px black;
    border-radius: 0px;
    border: 1.5px solid black;
}

#prevHowls {
    max-height: 45vh;
    overflow-y: auto;
}

.postTime {
    font-style: italic;
    color: rgb(100, 100, 100);
}

.howl.container {
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 5px;
    padding-bottom: 12px;
}