@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&display=swap');

:root{
    --text-color: #07213c;
    --light-bg-color: #fef3df;
    --dark-bg-color: #96774a;
}
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-family:Arial, Helvetica, sans-serif
}
.btn-custom{
    background-color: var(--text-color);
    color: var(--light-bg-color);
}
.btn-custom:hover{
    background-color: var(--light-bg-color);
    color: var(--text-color);
    font-weight: 600;
    border: var(--dark-bg-color) 2px solid;
}
/* nav{
    background: linear-gradient(to right, var(--light-bg-color), var(--dark-bg-color));
} */
nav .navbar-brand img{
    width: auto;
    /* max-height: 80px; */
}
nav #navbarNav{
    max-width: fit-content;
}
nav #navbarNav ul li a{
    font-family: "Edu AU VIC WA NT Pre", serif;
    padding: 8px 16px;
    font-size: 1.4em;
    color: #645151;
    font-weight: 500;
}
nav #navbarNav ul li a.active{
    color: var(--text-color);
}
nav #navbarNav ul li:hover{
    background-color: var(--text-color);
    border-radius: 5px;
}
nav #navbarNav ul li:hover > a{
    color: #fff
}
section h1{
    font-size: 1.9em;
    font-weight: 700;
}
section{
    font-size: 1.1em;
    text-justify: auto;
    text-align: justify;
    position: relative;
    /* background-image: url('./../img/bg.png') ; */
    background-repeat: no-repeat;
}
.bg-img{
    opacity: 0.15;
}
.certificate-img-holder{
    max-width: fit-content;
    margin: auto;
    box-shadow: 1px 1px 15px var(--dark-bg-color);
    position: sticky;
    top: 50px;
}
.btn-start-order{
    font-size: 1.4em;
    letter-spacing: 2px;
}
.img-inside-pages{
    background-image: url('../img/pagesBanner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 250px;
    padding-right: 50px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 2000px) {
    body{
        font-size: 1.3em;
    }
}