html, body {
    font-family: unset !important;
}

#app-header {
    background-color: #55B2BF;
}

.styled-text-container {
    display: flex;
    flex-direction: column;
    border: 1px solid gray;
    justify-content: space-between;
    align-items: center;
}

.result-container {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
}

.wrapper-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.btn-container {
    flex-direction: row;
}

.style-name {
    font-size: 1.2rem;
    text-decoration: underline;
    width: 30%;
}

.applied-style {
    font-size: 1rem;
    margin: 0 0.5rem;
    white-space: pre-wrap;
    font-family: -apple-system,system-ui,AppleGothic,Lucida Grande,Arial Unicode MS,Times New Roman, Times, Baskerville,Georgia;
}

button[id*="copy"] {
    padding: 0.5rem;
    width: 2.5rem;
    margin-right: 0.5rem;
}

button[id*="tweet"] {
    padding: 0.5rem;
    width: 2.5rem;
    margin-left: 0.5rem
}

/* **** Media Queries **** */
@media (max-width: 575.98px) {
    .wrapper-row {
        flex-direction: column;
        align-items: unset;
    }
    .btn-container {
        display: flex;
        flex-direction: column;
    }
    .style-name { width: unset; }
    .applied-style {
        margin: unset;
    }

    button[id*="copy"] {
        margin-right: unset;
        margin-bottom: 0.2rem;
    }

    button[id*="tweet"] {
        margin-left: unset;
    }
}
