@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

* {
    font-family: "Didact Gothic", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@media screen and (min-width: 768px) {
    body {
        padding-top: 75px;
    }
}

.header {
    margin: auto; 
    padding: 1.5rem 3rem;
}

.title-container {
    position: relative;
    display: inline-block;
    text-align: center;
    padding-bottom: 1.5rem;
}

#text {
    text-align: justify;
    font-size: 14px;
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 1.5rem 3rem 2rem 3rem;
}

.produtos > div {
    flex-basis: calc(50% - 15px);
    text-align: center;
    padding-bottom: 50px;
}

.produtos p {
    margin-bottom: 1rem;
}

.produtos img {
    width: 70%;
    height: auto;
    border: 2px solid #f29400;
    margin-bottom: 1rem;
}

.produtos a {
    border: 2px solid black;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    color: black;
    margin-top: 10px;
}

#second {
    color: #555;
    font-size: 14px;
}

@media (max-width: 768px) { 
    .header,
    .produtos {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
}
@media screen and (max-width: 600px) {
    .produtos > div {
        flex-basis: 100%;
    }
}

@media screen and (min-width: 601px) and (max-width: 1200px) {
    .produtos > div {
        flex-basis: calc(50% - 15px);
    }
}

@media screen and (min-width: 1500px) {
    .header {
        width: 100%;
        max-width: 100%;
    }
    .header,
    .produtos {
        padding: 20px 300px;
    }
}