*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(18, 18, 42);
}

.items{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 10px;
}

.item{
    background-color: rgb(24, 24, 65);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.item img{
    width: 150px;
    margin: 0 auto;
}

.aa{
    background: linear-gradient(270deg, rgba(241, 54, 64, 0) 0%, rgb(241, 54, 64) 49.24%, rgba(241, 54, 64, 0) 100%);
    width: 100%;
    height: 3px;
}