/* stylizacja nowosci.html */

.description
{
    width: 100%;
    height: fit-content;
    margin-top: 50px;
    padding: 30px;
    padding-bottom: 7%;
    background: #4f5050;
    margin-left: 0;
    margin-right: 0;
    color: lightgray;
    font-size: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
}

.description h1
{
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #0a2b42;
    margin-bottom: 25px;

}

.newbox
{
    width: 98%;
    height: fit-content;
    min-height: 600px;
     display: flex;

    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 10px;
    padding-top: 5%;
    border: #0a2b42 2px solid;
}

.stone
{
    height: fit-content;
    max-height: 80%;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    /* border: rebeccapurple 3px solid; */
}

.eye_2
{
    height: fit-content;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    /* border: yellow 3px solid; */
}

.newbox img
{
    transition: all 0.5s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
}

.newbox img:hover
{
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.5s;
}

.title
{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size :24px;
    font-weight: bold;
    color: #0a2b42;
}

@media(max-width: 950px) {

    .description
    {
        height:500px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;

    }

    .newbox
    {
        height: fit-content;
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        display: inline-block;
        justify-content: center;
        padding: 0;

        border: #0a2b42 2px solid;
        clear:both;
        text-align: justify;
        align-items: center;
    }

    .twinbox img
    {
        transition: all 0.5s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
    }

    .twinbox img:hover
    {
        opacity: 1;
        transform: scale(1.05);
        transition: all 0.5s;
    }

    .stone
    {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 8%;
        padding-bottom: 20px;
        /* border: orangered 2px solid; */
    }

    .eye_2
    {
       width: 80%;
       margin-left: auto;
       margin-right: auto;
       text-align: justify;
       align-items: center;
       justify-content: center;
       float: unset;
       /* border: deepskyblue 2px solid; */
    }

}