html{
    background-color: #faf2eb;
    overflow-x: hidden;
}
header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: fit-content;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    background-color: #e0d6cc;
    filter: blur(10px);
}
main {
    display: grid;
    grid-template-columns: auto auto auto;
    position: absolute;
    top: 25%;
    left: 1%;
    width: 94%;
    height: 100%;
    padding: 25px;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid #baada0;
    text-align: center;
    background-color: #e0d6cc;
    filter: blur(10px);
}
nav {
    height: 80px;
    width: 190px;
}
.navbut{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    text-decoration: none;
    background-color: black;
    color: white;
    height: 50px;
    width: 75px;
    border-radius: 30px;
}
a {
    text-decoration: none;
}
img {
    pointer-events: none;
    width: 125px;
} 
.prod1, .prod2, .prod3, .prod4, .prod5, .prod6, .prod7, .prod8, .prod9 {
    border-radius: 25px;
    height: 150px;
    color: white;
    text-align: center;
}
.prod1 {
    background-color: gray;
}
.prod2 {
    background-color: saddlebrown;
}
.prod3 {
    background-color: salmon;
}
.prod4 {
    background-color: seagreen;
}
.prod5 {
    background-color: firebrick;
}
.prod6 {
    background-color: darkorchid;
} 
.prod7 {
    background-color: burlywood;
}
.prod8 {
    background-color: olive;
}
.prod9 {
    background-color: peru;
}
i {
    color: black;
    font-size: 50px;
    position: relative;
    padding: 5px;
}
.hus {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}
.copyright {
    position: absolute;
    top: 140%;
    left: 0%;
    width: 100%;
    height: 200px;
    background-color: rgb(41, 34, 34);
    text-align: center;
    color: white;
}
.prod {
    position: absolute;
    top: 15%;
    left: 33%;
    width: 410px;
    height: 440px;
    background-color: #faf2eb;
    padding: 10px;
    border: 1px solid black;
    border-radius: 20px;
}
.ax {
    position: absolute;
    top: 8%;
    left: 84%;
    color: black;
    font-size: 25px;
}
 h2 {
    padding: 10px;
    text-align: left;
}
h1 {
    padding: 10px;
}
p {
    text-align: left;
}
.fa-house {
    color: red;
}
@media screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: left;
    }
}