body {
    margin: 5em auto;
    background: #593737;
    background: linear-gradient(0deg,#593737 0%, #a8807c 100%);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}

main {
    width: 45vw;
    height: 75.9vh;
    overflow-y: scroll;
    border: 10px solid #2e2724;
    box-shadow:
        inset 0 0 0 4px #b46e5b;
    background-color: #ecddce;
    display: block;
    margin: auto;
    padding: 2em;
    font-size: 20px;

    & .quote {
    border: 10px solid #2e2724;
    box-shadow:
        inset 0 0 0 4px #b46e5b;
    color: #2e2724;
    margin:  1em auto;
    padding: 2em;
    }

    & .quote-meta {
        color: #7d5b55;
        font-size: 0.7em;
        margin-top: 1.25em;
        text-align: right;
    }
}

::-webkit-scrollbar {
      width: 0;
      /* remove scrollbar space */
      background: transparent;
      /* to make scrollbar invisible */
    }

::-webkit-scrollbar-thumb {
      background: transparent;
    }

.searchbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
    height: 2em;

    & .search {
        width: 100%;
        height: 100%;
        padding-left: 1em;
        border-radius: 5px;
    }

    & .submit {
        width: 30%;
        height: 100%;
        padding: 0.3em;
        background-color: #eebdb9;
        border: 1px solid #d4908a;
        color: #a15751;
        font-weight: bold;
        border-radius: 5px;
        transition: transform 0.5s;
    }

    & .submit:hover {
        width: 30%;
        height: 100%;
        padding: 0.3em;
        background-color: #ffdad7;
        border: 1px solid #ff998f;
        color: #d1776e;
        font-weight: bold;
        border-radius: 5px;
        transform: scale(1.1);
    }
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family:'Courier New', Courier, monospace
}

@media (max-width: 800px) {
    body{
        margin:  2em 0.5em;
    }

    main {
        width: 90%;

        & .quote {
    border: 10px solid #2e2724;
    box-shadow:
        inset 0 0 0 4px #b46e5b;
    color: #2e2724;
    margin:  0.5em;
    padding: 0.5em;
    word-break: break-all;
    overflow-wrap: break-word;
    width: 95%;
    }

    & .quote-meta {
        color: #7d5b55;
        font-size: 0.7em;
        margin-top: 1em;
        text-align: right;
    }
    }
}
