* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow Condensed', sans-serif;
}

.content-area {
    height: 92vh;
    background-color: rgb(252, 252, 248);
}

/* NAV BAR */

#nav-bar {
    position: fixed;
    width: 100vw;
    display: flex;
    justify-content:center;
    align-items: initial;
    height: 60px;
    background-color: #FCFCF8;
    z-index:3;
}

#nav-bar a {
    text-decoration: none;
    text-align: center;
    color:#e6114d;
    font-weight: bolder;
}

#nav-bar div {
    height: 140px;
    background-color: transparent;
}

#nav-bar img {
    height: 100%;
    background-color:#fcfcf8bf;
}

.textNav {
    margin-top: 16px;
    font-size: 20px;
}

/* FOOTER */

.brands {
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#fcfcf8;
}

.brands img {
    height: 100%;
    padding: 0 2%;
}

.footer-home {
    position: fixed;
    z-index: 7;
    bottom: 0;
    text-align: center;
    font-size: 15px;
    width: 100vw;
    height: 8vh;
    padding:20px 0;
    color:rgb(252, 252, 248);
    font-weight: lighter;
    background-color:rgb(172, 48, 83);
    box-shadow: 0 -3px 10px rgb(117, 113, 114);
}

.footer-home p {
    color: rgb(252, 252, 248);
}

/* HOME */

.home-page {
    background-image: url("./assets/vitrina1.jpg");
    background-size: cover;
    background-position: center;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding: 90px 50px 50px 0px;
    color: rgb(252, 252, 248);
    text-shadow: rgb(65, 62, 63) 3px 0 3px;
}

@media only screen and (max-width:700px){
    .brands {
        height: 30%;
    }

    .home-page {
        height: 70%;
    }
}

/* PRODUCTS PAGE */

.productos-page {
    display: flex;
    flex-direction: column;
    padding: 150px 5% 0 5%;
}

.productos-title {
    margin-bottom: 20px;
    color: #4d4e4f;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20%;
}

.products-container div{
    width: 250px;
    height: 250px;
    margin: 2%;
    text-align: center;
    padding: 90px 0 0 0;
    color:rgb(252, 252, 248);
    font-size: 30px;
    box-shadow: 0 3px 10px rgb(117, 113, 114);
    text-shadow: rgb(65, 62, 63) 3px 0 3px;;
}

.products-container a {
    background-color: rgb(252, 252, 248, 0.8);
    text-decoration: none;
    text-shadow: none;
    font-size: 15px;
    color: rgb(117, 113, 114);
    font-weight: lighter;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgb(117, 113, 114);
    padding: 6px
}

.pContainerOne {
    background-image: url("./assets/vitrina8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.pContainerTwo {
    background-image: url("./assets/vitrina10.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.pContainerThree {
    background-image: url("./assets/vitrina11.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.pContainerFour {
    background-image: url("./assets/vitrina12.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.productos-title img {
    height: 20px;
}

/* CONTACT PAGE */

.contact-page {
    padding: 150px 0px 0 0px;
    text-align: center;
    margin-bottom: 20%;
    color:#4d4e4f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form div {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    line-height: 30px;
}

.contact-form input {
    width: 286px;
    border: 1px solid rgb(117, 113, 114); 
    padding: 2px;
}

.contact-form textarea {
    width: 286px;
    border: 1px solid rgb(117, 113, 114);
    padding: 2px;
}

.contact-page button {
    margin-top: 2%;
    padding: 5px 20px;
    border-radius: 10px;
    border: none;
    background-color: rgb(172, 48, 83);
    color: rgb(252, 252, 248);
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgb(117, 113, 114);
}

.social-netw {
    text-align: center;
}

.social-netw img {
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-top: 4px;
}

.msg-send {
    text-align: center;
    font-size: 1.5em;
    margin-top: 10%;
}

.link {
    text-decoration: none;
    color:#ffffff;
}
a:hover {color: #ffffff; text-decoration:underline;}