.language {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 2;
    padding: 10px;
}

.bi-translate {
    display: flex;
    font-size: 60px;
    justify-content: center;
    border: solid 2px #FFF;
    color: #FFF;
    border-radius: 50%;
    padding: 10px;
    width: 100px;
    height: 100px;
    align-items: center;
    transition: 0.3s;
}

.bi-translate:hover {
    background-color: #2C8BE4;
}

.lang-list {
    display: none;
}

.lang-list.active {
    display: flex;
    flex-direction: column;
    background-color: #303030;
    border: solid 2px #FFF;
    border-radius: 5px;
    gap: 10px;
    z-index: 3;
}

.lang-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #FFF;
    transition: 0.3s;
    gap: 5px;
}

.lang-item:hover {
    background-color: #2C8BE4;
}

.lang-item img {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 800px) {
    html {
        height: 100%;
    }

    .language {
        flex-direction: column-reverse;
        position: fixed;
        right: 0;
        bottom: 10px;
        top: auto;
        z-index: 2;
    }

    .bi-translate {
        font-size: 30px;
        width: 50px;
        height: 50px;
        background-color: #303030;
    }
}