@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,100&family=Poppins&display=swap');

* {
    margin: 0%;
    padding: 0%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color: rgb(237, 235, 235);

}

#exclusiveAccess {
    font-size: 26px;
    text-align: center;
    margin: 26px auto;
}
#exclusiveAccess .input{
    margin: 40px auto;
}
#exclusiveAccess input[type='text']{
    padding: 14px;
    outline: none;
    border: none;
    font-size: 24px;
    margin-right: -8px;
}
#exclusiveAccess button{
    padding: 14px;
    font-size: 24px;
    border: none;
    background-color: rgb(185, 182, 182);
}
#exclusiveAccess .lower p{
    font-size: 18px;
}

#exclusiveAccess .lower{
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.cond{
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 180px;
}
#networkSection{
    display: flex;
    height: 310px;
    border-bottom: 1px solid silver;
}
#networkSection .left{
    padding: 20px;
    display: flex;
    width: 70%;
    border-right: 1px solid silver;
    border-top: 1px solid silver;
    justify-content: space-around;
    line-height: 26px;
}
#networkSection .left h3{
    margin-bottom: 4px;
}
#networkSection .left .first{
    width: 26%;
}
#networkSection .right{
    width: 30%;
    height: 100%;
}
#networkSection .right .card{
    border-top: 1px solid silver;
    padding: 0px 20px;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-bottom: 1px solid silver;
}
#networkSection .right .card:nth-child(2){
    border-bottom: none;
}
#paymentSection{
    margin: 35px 0px;
    text-align: center;
}
#paymentSection h4{
    margin-bottom: 24px;
}
#copyright{
    background-color: black;
    color: white;
    padding: 32px;
}

#container{
    margin: 24px auto;
    border-bottom: 1px solid silver;
}
#container form{
    display: flex;
    justify-content: center;
}
#container form input:nth-child(1){
    border: none;
    border-bottom: 1px solid silver;
    height: 30px;
    font-size: 22px;
    width: 30%;
    outline: none;
    padding: 10px;
    color: grey;
}

#container form input[type='submit']{
    border: none;
    width: 100px;
    font-size: 20px;
    background-color: rgb(176, 171, 171);
}

#productContainer{
    display: grid;
    gap: 14px;
    margin: 24px auto;
    width: 85%;
    grid-template-columns: repeat(4, 1fr);
}

#productContainer div{
    padding: 12px;
    height: 460px;
}
#productContainer div img{
    width: 100%;
    height: 82%;
    object-fit: cover;
}
#productContainer div .actual{
    margin-right: 14px;
    color: black;
}
#productContainer div .deleted{
    color: grey;
}

#productContainer div h5{
    color: rgb(233, 63, 63);
    margin-bottom: 6px;
}

#productContainer div{
    background-color: ghostwhite;
}