body{
    margin: 0;
    padding-top: 195px ;
    background-color:  #18191a;
    font-family: Arial, Helvetica, sans-serif;
    object-fit: cover;
    padding-bottom: 54px;
}
.select-activity{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    margin-right: 20px;
    border-bottom: 1px solid grey;
}
.select-activity button img{
    height: 20px;
}
.buyer-option{
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background-color: #3a3b3c;
    color: white;
}
.user-dp{
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background-color: #3a3b3c;
}
.buyer-option:hover{
    background-color: #3a3b3cb2;
    cursor: pointer;
}
.user-dp:hover{
    background-color: #3a3b3cb2;
    cursor: pointer;
}
.date{
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding: 6px 8px;
    margin-right: 10px;
}
.date p{
    margin: 0;
}
.day{
    color: white;
}
.location{
    display: flex;
}
.location img{
    height: 20px;
    margin-right: 4px;
}
.location p{
    color: blue;
}
.product{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
    padding: 6px 8px;
}
.product-info{
    display: flex;
    flex-direction: column;
    height: 280px;
}
.product-info img{
    height: 80%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 4px;
}
.price{
    color: white;
    font-size: 19px;
    margin: 0;
    padding-bottom: 6px;
}
.specific-location{
    color: white;
    font-size: 15px;
    margin: 0;
}
@media (min-width:1000px){
    body, .footer{
        width: 600px;
        border: 2px solid grey;
        border-radius: 2px;
        margin-left: 32%;
    }
    body{
        background-color: rgb(233, 231, 231);
    }
    main{
        background-color: #18191a;
    }
}
@media (min-width:600px){
    .product{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .product-info{
        height: 300px;
    }
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    background-color: rgb(94, 92, 92);
    justify-content: space-between;
}
.footer p{
    margin: 0;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.footer button{
    background-color: grey;
    border: none;
    padding: 6px 13px;
    border-radius: 20px;
}
.footer div{
    padding: 10px 8px;
}
.footer a{
    text-decoration: none;
}