.square {
    margin: 10px;
    width: 150px;
    height: 120px;
}

.items_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.items_column h2 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
}

.items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 20px 10px;
    width: 100%;
    height: 100%;
}

.items img {
    display: flex;
    padding: 10px;
    margin: 10px;
    width: 100%;
    height: 100%;
    max-height: 370px;

}

.items p {
    color: black;
    text-align: justify;
    padding: 10px 20px;
    font-size: 20px;
    text-indent: 50px;
    line-height: 1.5rem;
}

.colorback {
    background: linear-gradient(90deg, #29323C 0%, #485563 100%);
    box-shadow: 5px 0 10px 2px #2A333D;
}

.colorback  p {
    color: #FFFFFF;
}

.title_b {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 100%;
}

.title_b h2 {
    color: black;
    margin: 10px auto;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
}

.col_4img {
    border-radius: 25px;
    transition: 0.5s;
}

.col_4img:hover {
    transform: scale(1.1);
    transition: 0.5s;
    z-index: 1000;
}

#layout_windows_back {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    height: 100%;
    background-image: url(/img/Layout/brick_black.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}