h1,h2,h3,h4,h5,h6,p,ul,li{
    padding:0;
    margin:0;
}
a{
    display: inline-block;
    color:#fff;
    text-decoration: none;
}
p{
    color:#fff;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.image-center{
    margin:0 auto;
}
.color-beige{
    color:#a77f30;
}
.color-beige2{
    color:#dab160;
}
.container {
    padding-left:5%;
    padding-right:5%;

}
.grid{
    display:grid;
}
.flex{
    display:flex;
}

.justify-content-start{
    justify-content: start;
}
.justify-content-end{
    justify-content: end;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.align-items-center{
    align-items: center;
}