/*Beginn Desktop-Layout*/

/*
Hauptfarbe: #2a2b2e 
Header/Footer Farbe: #555964
Akzentfarbe: #4543ca
Schriftfarbe: weiß
*/

@media only screen and (min-width: 800px) {
    html {
        scroll-behavior: smooth;
    }
    body {
        margin: 0%;
        padding: 0%;
        background-color: #808080;
        color: white;
        z-index: 0;
    }
    #main {
        display: flex;
    }
    #footer {
        display: block;
        position: fixed;
        align-items: center;
        width: 100%;
        bottom: 0;
        background-color: #555964;
        padding-left: 2em;
        padding-right: 2em;
    }
    .footer-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 4em;
        margin-left: 4em;
        padding-right: 4em;
        padding-left: 4em;
    }
    #header {
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 8vh;
        z-index: 10;
        background-color: #555964; /**/
    }
    .title{
        margin-left: 10.75em;
    }
    .menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        font-size: 24px;
        background-color: #1f1f1f;
        width: 15vw;
        height: 90em;
        z-index: 1000;
    }
    .nav-links {
        display: flex;
        justify-content: space-between;
    }
    .btn-img{
        height: 8vh;
        width: auto;
        padding-left: 0;
        padding-right: 0;
        margin-right: 2em;
    }
    .btn-img:hover{
        border: 2px solid #b2f1a5;
        border-radius: 20px;
        transition: all 0.1s ease-in;
    }
    #menu{
        display: none;
    }
    a {
        text-decoration: none;
        color: ghostwhite;
    }
    .content {
        background-color: #2a2b2e;
        width: 65vw;
        height: 100em;
        margin-left: 15vw;
        margin-right: 15vw;
        margin-top: 8vh;
    }
    #ranking {
        width: 100%;
        border-collapse: separate;
        border-spacing: 2px;
        caption-side: bottom;
        border-radius: 18px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    table {
        border-collapse: collapse;
        margin: 20px auto;
        width: 100%;
    }
    
    th, td {
        border: 1px solid #666;
        padding: 10px;
        text-align: center;
    }
    
    th {
        background-color: #444;
        color: #fff;
    }
    
    tr:nth-child(even) {
        background-color: #333;
    }
    #ico-menu {
        height: 2em;
        width: 2em;
        margin-left: 0.75em;
    }
    .user-icon {
        height: 2em;
        width: 2em;
    }
    #ico-menu-close {
        height: 2em;
        width: 2em;
    }
    .buttons {
        background-color: #4543ca;
        border: 2px solid #b2f1a5;
        color: white;
        padding: 0px 0px;
        text-align: center;
        align-items: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        height: 3em;
        width: 8em;
    }
    .buttons:hover {
        text-shadow: 2px 2px 8px #ff0000;
        border: 2px solid #b2f1a5;
        border-radius: 20px;
        color: #a5f1e9;
        transition: all 0.1s ease-in; 
    }
}

/*Beginn Mobile-Layout*/

@media only screen and (max-width: 800px) {
    
}

