body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #271C2A ;
    font-weight: bold;
}
dialog{
    background-color:#271C2A;
    border:2px solid #684a70;
    border-radius: 6px;
    width:500px;
    height: 300px;
    padding:10;
}
dialog::backdrop {
    background-color: rgba(25, 25, 25,0.5);
  }
dialog >form> h1{
    margin-top:-6px;
    color:#fff;
    text-align: center;
}
dialog>form>div{
    margin-top:15%;
}
dialog>form>div>button{
    width: 250px;
    background-color: #45314C;
    height: 30px;
    color:#fff;
    font-size:20px;
    border: none;
    border-radius: 6px;
}
.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;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 { 
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img { 
    max-width: 100%;
    padding: 50px 0;
    margin-left: 200px;
}

.col-2 > h1 {
    font-size: 50px;
    line-height: 70px;
    color: #fff;
    font-weight: bold;
}

.col-2 p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: #45314C;
    color: #fff;
    padding: 12px 15px;
    margin: 5px 0;
    margin-left:10px;
    border-radius: 5px;
    transition: background 0.5s;
}

.btn:hover {
    background: #3F2C45 ;
}

.product {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.product > h1 {
    font-size: 50px;
    font-weight: 600;
    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;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.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) {
    .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;
    }
  }