/* standard comp */
.standard-comp {
    margin-bottom: 2rem;
}

.standard-header {
    padding: 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-hare-green);
    border-radius: 1rem;
    font-family: 'Share Tech Mono', monospace;
}

.standard-text {
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    text-align: justify;
}

/* xs screen */
@media only screen and (max-width: 768px) {
    .standard-comp {
        margin-bottom: 1rem;
    }

    .standard-header {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .standard-text {
        margin-bottom: 1rem;
    }

    .standard-header {
        text-align: center;
    }
}