.pizza {
    margin: 2rem auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: .6rem;
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    background-color: #8DFFBF;
    background-image: linear-gradient(20deg, #8DFFBF 0%, #FFF892 100%)
}

.pizza a {
    color: #000;
    font-weight: 500;
    text-shadow: 0 1px 0 #fff;
}

.pizza a:hover {
    text-shadow: 0 1px 3px #fff;
}

.pizza-x {
    max-width: 800px;
    width: calc(100% - 32px);
    min-height: 90px;
}

.pizza-y {
    max-width: 400px;
    min-height: 300px;
}

.pizza .in-text {
    font-size: 1.5em;
    font-weight: 600;
}

.pizza .in-contact {
    font-size: 1em;
}

@media screen and (max-width: 479px) {
    .pizza {
        font-size: 13px;
        gap: .6rem
    }

    .pizza-y {
        min-height: 200px;
    }
}
