@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap);
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    background: gold;
}

.header
{
    display: inline-block;

}
.header ul li
{    
    display: inline-block;
    list-style: none;
    margin-left: 100px;
    font-size: 25px;
}
.header ul li a
{
    text-decoration: none;
    padding: 6px 15px;
    color:#fff;
    border-radius: 20px;
}
.header ul li a.active
{
    background: white;
    color: gold;
}
.header ul li a:hover
{
    background: white;
    color: gold;
}
.fa
{
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: end;
    text-decoration: none;
    margin: 5px 2px;
}
.fa-instagram
{
    background: #125688;
    color:white
}
.main-image
{
    position: relative;
    width: 100%;
    height: 1000px;

}