: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: flex;
    flex-direction: column;
    align-items: center;
}

.element{
    width: 90%;
    height: 60px;

    display: flex;
    align-items: center;

    padding-left: 50px;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.element:hover{
    transform: scale(1.05);
    background-color: #333333;
    border: none;
}

.element:first-child{
    border-top: 2px solid var(--background-color-1);
}

.element:last-child{
    border-bottom: 2px solid var(--background-color-1);
}

.element:not(:first-child){
    border-top: 1px solid var(--background-color-1);
}

.element_id{
    width: 100px;

    color: var(--point-color-1);
    font-size: 20px;
}

.element_title{
    width: 550px;

    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.element_author{
    width: 130px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.element_date{
    width: 100px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;

    justify-self: end;
}