*
{
    background-color: black;
    color: white;
    margin: auto;
}

a
{
    color:cadetblue;
}

button:hover 
{
    font-size: 101%;
    transition: 0.3s;
}

button
{
    background-color: cornflowerblue;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    padding: 4px;
    border: 0;    
    box-shadow: none;
}
/*account.php*/
.glow 
{
    animation: glowing 1.5s infinite;
}

@keyframes glowing 
{
    0% { box-shadow: 0 0 5px #ff0000; }
    50% { box-shadow: 0 0 20px #ff0000; }
    100% { box-shadow: 0 0 5px #ff0000; }
}

.img_avatar
{
    display: block;
    max-width: 96px;
    max-height: 96px;
    width: auto;
    height: auto;

}

input
{
    background-color: white;
    color: black;
}

li
{
    display: inline;    
}

.line_seperator {
    width:100%;
    height:20px;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

.middle_div
{
    text-align: center;
    width: 50%;
    margin: auto;
}

table
{
    border-spacing: 8px;
}

td
{
    border-color: cornflowerblue;
    border-width: 1px;
    border-radius: 2px;
    border-style: solid;
    padding: 4px;            
}

.td_button
{
    border: none;
    padding: 4px;
}

thead
{
    text-align: left;    
}

ul 
{
    padding-left: 0;
    list-style-type: none;
}

.header_nav
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;    
    padding: 1em;
}

@font-face 
{
    font-family: 'console';
    src: url('/resources/fonts/Web437_IBM_VGA_8x16.woff');
}

@font-face
{
    font-family: 'almendra';
    src: url('/resources/fonts/AlmendraSC-Regular.otf');
}

h1
{    
    font-family: 'almendra';    
    font-size: 50px;        
    padding: 6px;    
    text-align:center;    
    text-shadow: 0 0 30px #000000, 0 0 10px #afafaf       
}

h2
{
    font-family: 'almendra';
    font-size: 36px;     
    padding: 4px;
    text-shadow: 0 0 30px #000000, 0 0 10px #AFAFAF       
}

warning
{
    color: #ff0000;
}

.pageNav { cursor: pointer; padding: 5px 10px; border: 1px solid #ddd; margin: 0 2px; }
.pageNav.current { background-color: #007bff; color: white; }
.ellipsis { cursor: pointer; color: blue; }
.full-text { display: none; }
.alphabet-links { margin-top: 20px; }
.alphabet-links a { margin: 0 5px; text-decoration: none; color: #007bff; }

.container {
    text-align: center;
}

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