.ending-container{
    display: grid;
    /*align-items: center;*/
    justify-items: center;
    grid-template-columns: 1fr 2px 45% 2px 1fr;
    background-color: rgb(72, 72, 72);
    text-shadow: 2px 2px black, 1px 1px black;
}

.textblock{
    padding: 25px;
    text-align:justify;
    box-sizing: border-box;
    color: rgb(250, 190, 5);
}

.companyinfo-container{
    padding: 25px;
    text-align: center;
    box-sizing: border-box;
    align-self: center;
}

.companyinfo{
    margin: 5px;
    color: rgb(250, 190, 5);
    font-family: 'Rubik', Arial;
    font-size: small;
}

.companyinfo.side{
    color: rgb(145, 145, 145);
}

.companyinfo.bold{
    font-weight: bold;
}

.separator{
    align-self: stretch;
    width: 100%;
    margin: 25px;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: rgb(250, 190, 5);
}

/*SMARTPHONES*/
@media (max-width: 960px) {
    .ending{
        grid-template-columns: 100%;
    }
    .textblock{
        display: none;
    }
    .separator{
        display: none;
    }
    .companyinfo-container{
        width: 100dvw;
    }
}