/*general*/
body {
    background-color: #f0f0f0;
}

/*navigation bar*/
#btn-login {
    width: 40px;
    height: 40px;
}

/*description and title*/
#div-emphasis {
    text-align: center;
    margin-top: 80px;
}

#div-emphasis > hr {
    margin: auto;
    width: 50%;
}

/*product list*/
#div-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.div-products {
    margin: auto;
    margin-top: 30px;
    width: 250px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.div-products > h2 {
    margin-top: 10px;
    font-size: 30px;
    text-align: center;
}

.p-center {
    text-align: center;
    margin: 0;
}

.div-products > div {
    text-align: center;
}

.div-products > div > button{
    margin: 10px 0 10px 0;
    background-color: #8b0000;
    border-color: #8b0000;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
}

/*report block/product*/
#submitReport {
    background-color: #008000;
}

/*baseboard*/
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    gap: 15px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: blueviolet;
}

/*responsiveness*/
@media (max-width: 600px) {
    
    #div-search {
        width: 90%;
    }

    #div-form > input {
        width: 65%;
    }

    #div-form > button {
        width: 30%;
    }

    #div-container {
        grid-template-columns: 1fr;
    }

    /*baseboard*/
    .footer-container {
        font-size: 16px;
    }

}