.blink-me {
    animation: blinker 1s linear infinite;
    transition: all .1s;
}

@keyframes blinker {
    50% {
      opacity: 0;
    }
}

.orange {
    color: #ee8133;
}

.red {
    color: red;
}

.font-large {
    font-size: 1.7rem;
}

.navbar-top a {
    color: white;
    text-decoration: none;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-table {
    width: 100%;
    border: 2px solid #ddd;
}

.my-table tr {
    height: 60px;
}

.my-table tbody tr:nth-child(odd) {
    background: #fff;
}

.my-table tbody tr:nth-child(even) {
    background: #eee;
}

.my-table thead tr {
    background: #ddd;
}

.my-table td {
    border: 2px solid #ddd;
    padding: 15px;
}

.contact-info a {
    text-decoration: none;
    color: black;
}

.contact-info h3 i {
    color: #ee8133;
}

.credits a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}