.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(36, 35, 35);
    color: rgb(221, 218, 218);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}



.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #474545;
    padding: 10px;
    margin-bottom: 10px;
    height: 20%;
    width: 80%;
}

.pics {
    width: 150px;
    height: 180px;
}

button {
    background-color: #af5b4c;
    color: white;
    border: 2px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.login {
    position: absolute;
    top: 10px;
    right: 10px;
}

.a {
    float: right;
}

.menu {
    position: absolute;
    top: 10px;
    left: 20px;
}

h1 {
    margin-top: -110px;

}

h2 {
    color: rgb(235, 229, 229);
}



.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    background-color: #be4141;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.sidebar.open {
    transform: translateX(0);
}