*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat' ,'Source Sans Pro';
}
header{
    position: fixed;
    top:0;
    width: 100%;
    height: 10vh;
    background-color: black;
    text-align: center;
    z-index: 1;
}
#logo{
    height: 100%;
}

main{
    margin-top: 10vh;
    height:90vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/*left*/
.left{
    width: 40%;
    height: 100%;
    max-height: 580px;
    position: relative;
    background-position: center;
    background-image: url("img/black.png");
    background-size: cover;
}
 
#watchWrapper{
    width: 200px;
    height: 225px;
    color: white;
    position: absolute;
   top: 35%;
 
   left: 54%;
   transform: translateX(-50%);
   box-sizing: border-box;
   padding: 40px;
}
#heart{
    position: absolute;
    bottom: 130px;
    left: 35px;
    width: 80px;
}
#beat{
    position: absolute;
    bottom: 80px;
    left: 50px;
     
}
#time{
    position: absolute;
    bottom: 120px;
    left: 10px;
}

.show{
    display: show;
}
.hide{
    display: none;
}


/*end left*/

/*right*/

.right{
    padding-top: 50px;
    width: 55%;
    margin-left: 25px;
}
.colors{
    margin-top: 10px;
}
.btnC{
    padding: 25px 35px;
    border: none;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
}
#btnBlack{
    background-color: #23211f ;
}
#btnRed{
    background-color: #ca3d22 ;
}
#btnBlue{
    background-color: #565681 ;
}
#btnPurple{
    background-color: #8a5362 ;
}
.features{
    margin-top: 20px;
}
.btnF{
    padding:10px 35px;
    border: none;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.selected{
    border: 2px solid rgba(255, 166, 0, 0.637);
}
.btnBuy{
    padding:10px 35px;
    border: none;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    background-color: orange;
}
@media (max-width: 900px){
    .right{
       width: 100%;
    }
    .left{
        width: 100%;
        max-width: 580px;
        
    }
}