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;
}
nav {
    height: 80px;
    width: 190px;
}
.navbut, .navbutc{
    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: 28px;
}
.navbutc {
    color: red;
}
a {
    text-decoration: none;
}
img {
    pointer-events: none;
    width: 125px;
} 
i {
    color: black;
    font-size: 50px;
    position: relative;
    padding: 5px;
}
.hus {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.navbut:hover, .navbutc:hover {
    text-decoration: underline whitesmoke;
    border: 2px solid black;
    border-radius: 32px;
    background-color: rgb(68, 61, 61);
}
.fa-house:hover, .fa-phone:hover {
    background-color: whitesmoke;
    border-radius: 10px;
}
.copyright {
    position: absolute;
    top: 140%;
    left: 0%;
    width: 100%;
    height: 200px;
    background-color: rgb(48, 44, 44);
    text-align: center;
    color: white;
}