@font-face {
    font-family: "segoe";
    src: url("fonts/Segoe_UI.ttf");
}

* {
    font-family: "segoe";
}

body {
    background-color: #A2B5CD;
    padding: 1em;
}

table {
    background-color: #4a76ab;
    padding: 3em;
    min-width: 850px;
  
}

table tbody tr:first-child th {
    border-bottom: 1px solid #2b3e50;
    padding-bottom: 10px;
}

table tbody tr:nth-child(even) {
    background-color: #3b587b;

}

table tbody tr:nth-child(even):hover {
    background-color: #476282;

}

table tbody tr {
   transition: all 0.5s ease-in-out;

}

table tbody tr:nth-child(odd):hover {
    background-color: #628abf;

}


th, td {
    text-align: left;
    padding: 18px 16px;
    color: white;
}

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

.red-text {
    color: red;
}
.center {
    width: 100vw;
    min-width: 500px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button {
    padding: 4px 8px;
    border: 1px solid #333; 
    border-radius: 3px;
    text-decoration: none;
    margin-right: 5px;
    font-size: medium;
    transition: all 0.5s ease-in-out;
}

.button:hover {
    cursor: pointer;
}

.button-blue {
    background-color: #2ab2fb;
    color: white;
}

.button-blue:hover {
    background-color: #2a52fb;
}


.button-yellow {
    background-color: #f85f5f;
    color: white;
}

.button-yellow:hover {
    background-color: #EE3B3B
}

.button-red {
    background-color: #f85f5f;
    color: white;
}

.button-red:hover {
    background-color: #EE3B3B;
}