body{
    margin:0%;
}
@keyframes animace1{
    0%{
        transform: translateX(-200px);
    }
    100%{
        
    }
}
@font-face {
    font-family: 'RiotGames';
    src: url('riotgames.woff2') format('woff2'),
         url('riotgames.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.lol {
    width: 100px;
    transform: translateX(-50px);
    animation-name: animace1;
    animation-duration: 2s;
}
.lol:hover {
    opacity: 0.8; 
}

.mezera{
    width: 4%;
}
.info-bar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 0;
}

.menu li {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ede4e4;
    box-sizing: border-box;
    padding: 0 10px;
    background-color: black; 
}

.menu li:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
}

.menu {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 75%;
    list-style: none;
    
}

.menu a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #e4d6d6;
    text-align: center;
    font-family: 'League Gothic', sans-serif;
    font-size: x-large;
}
.menu li:hover {
    transition: 1.5s;
    background-color: #6e3a06; 
}

.footer{
    
    background-color: black;
    width: 100%;
    padding: 20px; 
    margin-top: 13%; 
}
.footertext{
    color: rgb(240, 228, 228);
    text-align: center;
    font-family: 'RiotGames', sans-serif;
}

.line {
    height: 5px;
    border-radius: 3px;
    width: 100%;
    background-color: white;
}

.mobileMenu {
    display: none;
}

.burgerContainer {
    display: none;
}

@media only screen and (max-width: 800px) {
    .menu {
        display: none;
    }

    .burgerMenu {
        display: flex;
        flex-direction: column;
        width: 75px;
        height: 75px;
        gap: 15px;
    }

    .burgerContainer {
        display: flex;
        justify-content: end;
        width: 80%;
        align-items: center;
        height: 100%;
    }

    .mobileMenu {
        right: 0;
        margin-top: 400px;
        position: fixed;
        width: 300px;
        padding-right: 15px;
        height: fit-content;
        background-color: black;

    }

    .mobileMenu ul {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .mobileMenu li {
        border: 2px solid white;
        border-radius: 3px;
        text-align: center;
        margin-top: 15px;
        list-style: none;
        font-size: 40px;
        width: 100%;
        font-family: 'League Gothic', sans-serif;
    }

    .mobileMenu a {
        color: white;
        text-decoration: none;
    }

    .mibleMenu li:hover {
        transition: 1.5s;
        background-color: #6e3a06; 
    }
}