/*-- Typography --*/
h3 {
    font-family: "Mogra", system-ui;
    color: peru;
}
header {
    font-family: "Mogra", system-ui;
    color: bisque;
}
li {
    list-style-type: none;
}
.title {
    font-family: "Mogra", system-ui;
    color: #493203;
}
.sect-copy {
    color: #493203;
    font-family: "Montserrat Alternates", sans-serif;
}

/*-- General Styling --*/

body {
    background-color: bisque;
}
.section {
    background-color: peru;
    width: 100%;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(73, 50, 3, 0.408);
}
.section-image {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
    width: 100%;
}
.btn {
    width: fit-content;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #493203;
}
header {
    background-color: #493203;
    padding: 20px;
}
main {
    margin: 20px;
}

/*--Positioning Properties--*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul {
    display: flex;
    gap: 20px;
}
main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 30px;

}
.text {
    padding: 25px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.doorhandle{
    background-color: bisque;
}