.min-h-screen{
    min-height: 100vh;
}

.font{
    color: white;
}

.bg-red{
    background-color: red;
}

.m-auto{
    margin: auto;
}

.flex{
    display: flex;
}

.flex-col{
    flex-direction: column;
}

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

.justify-center{
    justify-content: center;
}

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

.my-1{
    margin: 10px 0px;
}

.my-2{
    margin: 30px 0px;
}

.py-1{
    padding: 40px 0px;
}

.position{
    position: relative;
}

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

.highlighted{
    font-size: 1.3rem;
    font-weight: bolder;
}
.invert{
    filter: invert(1);
}