/* Animations */

.text-flash {
    color: blue;
}

/* Fobts */

.font-silkscreen {
    font-family: 'Silkscreen';
}

/* Utilities.css */

.mt-0 {
    margin-top: 0;
}

.mt-1-2 {
    margin-top: 0.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.text-none {
    text-decoration: none;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1-2 {
    gap: 0.5rem;
}

@media screen and (min-width: 790px) {
    .two-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }
}