body {
    font-family: sans-serif;
    background-color: rgb(117, 32, 32);
}

.items {
    display: grid;
    grid-template-columns: 400px 400px 400px;
    grid-template-rows: 400px 400px;
    gap: 300px;
    justify-content: center;
}

.item-container {
    width: 400px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    text-align: center;
    line-height: 2;
}

.item {
    width: 400px;
    height: 400px;
    /* border-bottom: 2px solid black; */
}

.back-btn {
    position: relative;
    font-size: 20px;
    width: 100px;
    height: 50px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    float: right;
    bottom: 60px;
}

a {
    text-decoration: none;
}






/* language bar */

.nav-bar {
    width: 250px;
    height: 50px;
    display: inline;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    float: right;
    right: 0;
    margin-bottom: 50px;
    position: absolute;
}

.language-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: aliceblue;
    width: 150px;
    height: 50px;
    background-color: rgb(0, 0, 0);
    position: sticky;
    transition: width 500ms;
}

.lan-icon {
    position: absolute;
    margin-left: 100px;
    transition: margin-left 500ms;
}
#lang-bar-text {
    transition: margin-left 500ms;
}
.lang-select {
    display: flex;
    position: absolute;
    flex-direction: row;
    font-size: 15px;
    gap: 5px;
    margin-left: -70px;
    display: none;
    cursor: pointer;
}

.lang-select li {
    border-right: 1px solid white;
    padding-right: 5px;
}
.lang-select li:last-child {
    border: none;
}
.lang-select li a {
    text-decoration: none;
    color: aliceblue;
}
.arrow-icon {
    color: white;
    position: absolute;
    right: 120px;
    cursor: pointer;
    transition: right 500ms;
}
/* language bar */