.title-bar {
    height: 35px;
    background-color: #63b8ff;
    /* light blue bar */
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.heading-color {
    color: #2b2d98;
}

.logo-round {
    width: 100%;
    /* responsive */
    max-width: 120px;
    /* limit size so it doesn't grow too big */
    aspect-ratio: 1 / 1;
    /* keeps it a perfect square */
    border-radius: 50%;
    /* makes it round */
    object-fit: cover;
    /* prevents distortion */
}

.ff {
    font-family: roboto;
}

.bg-color-container {
    background-color: rgb(218, 216, 216);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.bs {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.tc-blue {
    color: rgb(0, 88, 129);
}

.blinking-text {
    font-weight: bold;
    color: rgb(0, 88, 129);
    animation: blink 2s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}