:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.main{
    width: 1350px;
    height: auto;

    display: flex;
    justify-content: space-between;
}

.contents{
    width: 1050px;
    height: auto;

    padding-top: 30px;
    padding-bottom: 30px;

    margin-bottom: 50px;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
}

.element{
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-rows: 2fr 1fr;
    place-items: center;

    cursor: pointer;

    transition: transform 0.5s ease;
}

.element:hover{
    transform: scale(1.05);
}

.element_img{
    width: 280px;
    height: 160px;

    border: 1px solid rgba(255, 255, 255, 0.5);
}

.element_title{
    width: 80%;

    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;

    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}