html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}
body {
    background-color: #F5F0ED;
    font-family: 'Inter', sans-serif;
}

.button {
    border-radius: 1000px;
    background-color: #000;
    color: white;
    padding: 20px 30px;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    border: none;
}

section,footer {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.gap3 {
    gap: 1rem;
}

.object-contain {
    object-fit: contain;
}

.product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 300px;
    height: 400px;
    margin-right: 2rem;
    flex-shrink: 0;
}

.logos {  
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2em;
    grid-auto-flow: row;
}

@media screen and (max-width: 50em) { 

    .logos {  
        grid-template-columns: 1fr 1fr;
        gap: 1em;
    }
}
