* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

body {
    background-color: #2B2922;
}

.hero {
    height: 50vh;
    padding-top: 30px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* common btn style */
.btn-outline {
    padding: 14px 30px;
    background: transparent;
    border: 1px solid #655C2C;
    color: #A08F36;
    border-radius: 8px;
    transition: all 300ms linear;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: #8d813c;
    color: #c7ad2d;
}

/* navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list ul li {
    margin-right: 50px;
}

.menu-list ul li:last-child {
    margin-right: 0;
}

.menu-list ul li a {
    font-family: "Red Rose", sans-serif;
    font-size: 25px;
    color: #9F9D95;
    transition: color 300ms linear;
}

.menu-list ul li a:hover {
    color: #d8d8d8;
}

.menu-list ul li Button {
    font-family: "Red Rose", sans-serif;
    font-size: 23px;
}

/* hero-content */
.hero-content {
    width: 100%;
    height: 83%;
    display: flex;
    column-gap: 10%;
    align-items: center;
}

.hero-content h1 {
    font-family: "Dela", sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: #fff;
    width: 55%;
    padding-right: 60px;
}

.hero-content p {
    font-family: "Red Rose", sans-serif;
    font-size: 25px;
    color: #9F9D95;
    width: 30%;
    line-height: 1.5;
}

/* hero-banner-image */
.banner-image {
    height: 50vh;
    background: url(assets/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}