* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url("img/1.gif");
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
}

#Info {
    margin: 30px 0;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: rgba(52, 108, 148, 0.7);
    padding: 15px;
    border-radius: 10px;
}

#timer, #steps {
    font-weight: bold;
}

#win {
    font-size: 1.5rem;
    font-weight: bold;
    color: #CCECC4;
    margin-top: 10px;
}

.back, .man, .target, .box, .brick {
    width: 60px;
    height: 60px;
    background-size: cover;
}

.back {
    background-image: url('img/brickwall1.png');
}

.man {
    background-image: url('img/man1.png');
}

.target {
    background-image: url('img/target2.png');
}

.box {
    background-image: url('img/floor1.png');
}

.brick {
    background-image: url('img/wall1.png');
}

.list {
    display: flex;
    flex-direction: row;
}