.component-zero {
    background-color: #DAE8F5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    font-size: 20px;
}

.component-zero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.component-zero-columns {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.component-zero-columns > div{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.component-zero h2{
    font-size: 32px;
    font-family: 'Duepuntozero', sans-serif;
	font-weight: bolder;
    text-transform: uppercase;
    color: #3B3460;
}

.component-zero-container{
    font-family: 'Montserrat', sans-serif;
}

.component-zero ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media(max-width: 850px){
    .component-zero-container{
        display: flex;
        flex-direction: column;
        padding: 2rem;
		text-align: justify;
    }

    .component-zero-columns{
        align-items: center;
    }

    .component-zero h2{
        margin-bottom: 25px;
    }

    .component-zero li, .component-zero p{
        font-size: 20px;
    }
}