body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

img {
    width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#container {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

#siteid {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 120px;
    line-height: 120px;
    background-color: rgb(0,48,0);
}

#logo {
    position: relative;
    width: 280px;
    height: auto;
    margin: 0 auto;
}

#cliente {
    position: relative;
    width: auto;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgb(0,90,0);
    color: rgb(255,255,255);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 45px;
    font-weight: 600;
    font-stretch: condensed;
}

#content {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: auto;
}

.foto {
    width: 100%;
    height: auto;
    margin: 10px auto;
}

#productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: space-between;
}

#gallery {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-template-rows: auto;
    grid-gap: 10px;
    justify-content: center;
}

.proditems {
    width: 300px;
    height: auto;
}

.info {
    position: relative;
    width: 100%;
    height: auto;
    font-size: calc(1.5rem+0.5vw);
    line-height: 1.5;
    font-weight: 500;
}

.infoprod {
    position: relative;
    width: 100%;
    height: auto;
    font-size: calc(1rem+0.5vw);
    padding: 10px 0;
    font-weight: 500;
    text-align: center;
    background-color: rgb(0,48,0);
    color: rgb(255,255,255);
}

#whats {
    position: relative;
    width: 300px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    font-size: 1.2em;
    background-color: rgb(37,211,102);
    border-radius: 8px;
    border: solid 2px rgb(0,48,0);
}

#whats a {
    text-decoration: none;
    color: rgb(0,0,0);
}

.shim10 {
    position: relative;
    clear: both;
    width: 100%;
    height: 10px;
}

.textright {
    text-align: right;
}

.textcenter {
    text-align: center;
}

.resalta {
    position: relative;
    width: 50vw;
    margin: 20px auto;
    padding: 25px;
    height: auto;
    border-bottom: double 5px rgb(0,48,0);
    border-top: double 5px rgb(0,48,0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3rem;
    text-align: center;
}

.credit {
    position: relative;
    font-size: 0.8em;
    text-align: right;
    font-style: italic;
    bottom: 50px;
    right: 20px;
    color: rgb(255,255,255);
}

.volver {
    position: relative;
    margin: 10px auto;
    width: 30%;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    color: rgb(255,255,255);
    background-color: rgb(0,48,0);
    text-align: center;
    border-radius: 10px;
}

.volver a {
    text-decoration: none;
    color: rgb(255,255,255);
}

@media only screen
    and (max-width : 480px) {
        
        #container {
            width: 100%;
        }
        
        #cliente {
            text-align: center;
            padding: 0;
            font-size: 35px;
        }
        
        #content {
            width: 90%;
        }
        
        #info {
            font-size: 1.5rem;
        }
        
        .foto {
            width: 100%;
        }
        
        #productos {
            display: block;
            width: 90%;
            margin: 0 auto;
        }
        
        .proditems {
            width: 100%;
        }
        
        .resalta {
            width: 80%;
            font-size: 2rem;
        }
        
        .volver {
            width: 50%;
        }
}