:root{
    --white:white;
}
*{
    margin: 0px;
}
body{
    background-color: palegreen;
}
#header_image{
    width: 60px;
    object-fit: contain;
}
#navbar{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: right;
    position:fixed;
    width: 100%;
    top:0px;
    background-color: gray;
    padding: 10px;

}
.navlinks{
    display: flex;
    list-style: none;
}

.navlinks a{
    text-decoration: none;
    color: black;
    padding:0px 10px;
}
.logo_container{
    display: flex;
    align-items: center;
}
.logo_container img{
    width:40px;
    height: 40px;
    border-radius: 50%;
    border: dotted black;
}
.the_product{
    font-size: 25px;
    font-family: sans-serif;
    font-weight: bold;
}
email-section{
    margin-top: 100px;

}
#submit{
    background-color: greenyellow;
    color: black;
    cursor: pointer;
}
section::before{
    display: block;
    content: " ";
    margin-top: -100px;
    height:100px;
    visibility: hidden;
    pointer-events: none;
}
section{
    margin: 70px 20px;
    text-align: center;
}
h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 10px;
}
.icon{
    width:50px;
    height: 50px;
    color: yellow;
    border-radius: 50%;
    margin-right: 30px;
}
#features{
  text-align: left;
  max-width: 800px;
  margin: auto; 
}
.features{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
#video{
    width: 100%;
}
.product_image{
    width:100%;
    margin:auto;
    height:500px;
    background-repeat: repeat-x;
    background-size: contain;
    
    border: 1px solid black;
    border-radius: 10px;

}
.product1{
    background-image: url(images/logo.jpg);
    
    
}
.card{
    background-color: white;
    border-radius: 10px;
    width:90%;
    margin: auto;
    margin-bottom: 10px;
}
.inner_card{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}
.content{
    font-family: sans-serif;
    color: black;
    margin-bottom: 10px;
}
.flex{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.main_price{
    margin-right:20px;
    font-size: 30px;
    font-family: sans-serif;
    color:orangered;
}
.old_price{
text-decoration: line-through;
color:blue
}
.company{
    font-family: sans-serif;
    letter-spacing: 5px;
    color:black;
    text-transform: uppercase;
}
.header{
    font-family: sans-serif;
    margin: 10px 0;
    color:black;
}
.add{
    
    background-color: greenyellow;
    cursor: pointer;
    padding: 15px;
    border:none;
    border-radius: 10px;
    width:100%;
    color:black;
    font-family: sans-serif;
    font-weight: 700;
    display: flex;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
}
.add p{
    margin-left: 550px;
    text-align: center;
}
footer {
    margin-top: 30px;
    background-color: gray;
    padding: 20px;
  }
  
  footer > ul {
    display: flex;
    justify-content: space-around;
  }
  
  footer > ul > li {
    padding:  10px;
    text-decoration: none;
  }
  footer ul li a{
    text-decoration: none;
  }
  
  footer > span {
    margin-top: 5px;
    display: flex;
    justify-content:  space-around;
    font-size: 0.9em;
    color: black;
  }