body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #271C2A ;
    font-weight: bold;
    height: 100%;
}
.product-col > img{
    max-height: 150px;
}
.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #fff;
}

p { 
    color: #fff;
}


.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.btn {
    display: inline-block;
    background: #45314C;
    color: #fff;
    padding: 12px 15px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.5s;
}

.btn:hover {
    background: #3F2C45 ;
}

.product {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 50px;
    
    color: #684a70;
}

p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: -5%;
    display: flex;
    justify-content: space-between;
}

.product-col {
    flex-basis: 31%;
    background: #2f2133;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 400px;
}

.product-col p {
    background: #2f2133;
}

.product-col h3 {
    background: #2f2133;
    color: #fff;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.product-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media screen and (max-width: 500px) {
    .container{
        margin-top:15%;
    }
    .product-col{
        min-width: 300px;
    }
    .product-col p{
        font-size: 16px;
    }
    .col-2 img{
        display: none;
    }
    body{
        padding-top:10px;
        text-align: center;
        margin: auto;
        height:100%;
        vertical-align: middle;
    }
    nav>ul{
        margin-right:15px;
    }
    ul{
        width: 100px;
    }
    ul li{
        margin-top:10px;
    }
    .product{
        text-align: center;
    }
    .row{
        justify-content: center;
    }
    #top-row{
        padding-top:20vh;
    }
    .container{
        padding-left: 0;
    }
    .navbar{
        margin: 0;
        position: fixed;
        top:0;
        width:100%;
        transition: 0.2s;
        box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
    }
    #logo{
        transition-duration:0.2s;
    }
  }