#content {
    flex-direction: column;
    width: -webkit-fill-available;
    max-width: 35em;
    width: 80%;
    align-self: center;
    height: 70vh;
    font-size: 2em;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px #c0c0c0;
}

#home-text-container {
    display: flex;
    flex-grow: 1;
    border: 3px solid aliceblue;
    border-radius: 30px;
    background-image: radial-gradient(rgb(173 0 0), black 180%);
    overflow: hidden;
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
        pointer-events: none;
    }
}

#home-text {
    overflow: auto;
    margin: 1em;
    p {
        margin: unset;
    }
    &::-webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
}
