:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.contents{
    width: 85%;
    height: auto;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 30px;
}

.element{
    width: 90%;
    height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    margin-top: 10px;
    margin-bottom: 10px;
}

.element_img{
    width: 250px;
    height: 140px;

    border: 1px solid rgba(255, 255, 255, 0.5);
}

.element_title{
    width: 250px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;

    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}