main{
    width: 800px;
    margin-left: calc(50% - 400px);
    margin-right: calc(50% - 400px);
}

.button-back{
    position: absolute;
    top: calc(10% + 20px);
    left: 20px;

    width: 75px;
    height: 75px;

    filter: brightness(1);

    transition: .25s ease;
}
.button-back img{
    width: 100%;
    height: 100%;
}


.button-back:active{
    filter: brightness(0.5);
}


.descriptionOfNews{
    white-space: pre-line;
    text-align: justify;
}

.main-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nameOfNews{
    text-align: center;
}

.photo-of-news {
    width: 800px;
    max-height: 600px;
    border-radius: 20px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.25s ease;

    margin-bottom: 50px;
}
.photo-of-news:hover{
    transition: all 0.25s ease;
    transform: scale(1.05);
}


.extra-info{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-style: italic;
}