body{
    background: rgb(29, 29, 29);
}



.backList{
    display: flex;
    margin-top: 150px;
    width:1200px;
    min-height: 500px;
    height: auto;
    background: rgba(138, 136, 132, 0.226);
    border: 2px solid rgba(168, 165, 165, 0.233);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    align-items: center;
    flex-direction:column;
}

.infoBlock{
    display: flex;
    height: 70px;
    width: 1150px;
    background: rgb(226, 226, 226);
    border-radius: 3px;
    margin-top: 25px;
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.445);
    user-select: none;
    align-items: center;
    justify-content: center;
}
.infoBlock p{
    font-size: 20px;
    font-family: sans-serif;
    margin: 5px;
    width: fit-content;
    translate: 0% -50%;
}


.filesOne{
    display: flex;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    width: 1150px;
    height: 200px;
    background: rgb(226, 226, 226);
    justify-content: center;
    align-items: center;
    flex-direction:column;
}
p{
    font-size: 14px;
    color: black;
    font-family:PressStart2P ;
    width: 1120px;
    height: 20px;
    line-height: 20px;
    /* background: rgba(255, 0, 0, 0.726); */
}
.file{
    display: flex;
    width: 1120px;
    height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.041);

}
.fileText{
    font-size: 18px;
    font-family: sans-serif;
    width: 80%;
    border-left:2px solid rgba(0, 0, 0, 0.041);
    border-right:2px solid rgba(0, 0, 0, 0.041);
    padding: 20px;
    padding-top: 10px;
}
.fileImg{
    flex-shrink: 0;
    background-image: url("../ico/FotoFileOne.webp");
    background-repeat: none;
    background-size: 150px;
    width: 150px;
    height: 150px;
}

/* Кнопка */
.backBtn{
    display: flex;
    width: 350px;
    height: 150px;
    justify-content: center;
    align-items: center;
}
button{
    all: unset;
    text-align: center;
}
.fileBtn{
    font-family: sans-serif;
    font-size: 20px;
    color: rgb(255, 255, 255);
    background: rgb(255, 166, 2);
    width: 170px;
    height: 60px;
    border-radius: 15px;
    transition: all 100ms ;
    box-shadow: 2px 2px 2px rgba(70, 47, 4, 0.562);
}
.fileBtn:hover{
    transform: scale(0.98);
    box-shadow: 1.5px 1.5px 1.5px rgba(70, 47, 4, 0.562);
    background: rgb(248, 162, 2);
}
.fileBtn:active{
    transform: scale(0.95);
    box-shadow: 0.5px 0.5px 0.5px rgb(70, 47, 4, 0.562);
    background: rgb(231, 151, 3);
}