

main{
	width:100%;
	height:80vh;
	display:flex;
	justify-content: center;
	align-items:center;
}

.general-box{
	/* background: coral; */
	width:60vw;
	height:83vh;
	display:grid;
	grid-template-columns:1.5fr 2fr 1.5fr;
	grid-template-rows: 1.5fr 2fr 2fr 2fr;
	justify-items:center;
	/* grid-template-areas: */
    /* 'text text . . .' */
    /* 'text text companies' */
	/* '... delta . . .' */
	/* '... delta . . .'; */
}

.text-container{
	/* grid-area: text; */
	grid-column: span 2;
	grid-row: span 2;
	height:100%;
	width:100%;
}

.companies-container{
	background:black;
	/* grid-area: companies; */
	height:100%;
	width:100%;
	grid-row: span 2;
	height:90%;border-radius: 10px 10px 10px 0px;
	align-self:flex-end;
	color:#fff;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

.delta-container{
    background-color: #e1f6e7fa;
    color: #0d3531;
    height: 100%;
    border-radius: 10px 0px 10px 10px;
    width: 100%;
    /* grid-area: delta; */
    grid-column: 2/3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

