/* Universal Styles */
*{
    border: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
/* Common Styles */
.btn{
    background-color: goldenrod;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}
.btn:hover{
    background-color: rgb(176, 158, 55);
}


/* Uniq Styles */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#nav-li{
    list-style: none;
    display: flex;
    gap: 30px;
}
#nav-li a{
    color: black;
    text-decoration: none;
}
/* Header Section */
#header-container{
    display: flex;
    /* justify-content: space-between; */
}
#header-content{
    width: 50%;
    border: 1px solid black;
}
#header-content h3{
    font-size: 46px;
}
#header-img{
    width: 50%;
    border: 1px solid red;
}
/* Responsive Styles */
