body {
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url("/assets/images/background_photo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 80vw;
    text-align: center;

}
h2
{
    color:gold;
    font-size:2rem;
    font-weight: 900;
}

h3
{
    color:gold;
    font-size:1.5rem;
    font-weight: 900;
}

p
{
    margin: 0 auto;
    max-width:  90%;
    color: white;
    font-size:1.2rem;
    letter-spacing: 1px;
}

.navbar {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
}

.nav-links li a:hover {
    text-decoration: none;
    color: red;
    transition: 0.6 ease-in-out;
    cursor: pointer
}
.active
{
    color: gold !important;
}