.center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    margin: 15px 0;
}

.form-control:disabled {
    color: rgb(84, 84, 84);
}

.table-data td {
    padding: 15px;
}

.data-section {
    position: relative;
}

.data-section::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    /* background-image: url('../img/logo.png'); */
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 200px;
}

.center-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.background-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
    filter: brightness(50%);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.background-image:hover {
    filter: brightness(30%) blur(2px);
}

.card h1 {
    color: rgb(221, 221, 221);
    cursor: pointer;
}