:root {
    --main-background: #0C0E28;
    --second-background: #343540;
    
    --btn-primary: #ffd700;
    --btn-secondary: #39B281;
}

body {
    font-family: "Lora", serif;
    font-weight: 300;
    background: #193648;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Ubuntu", serif;
}

a {
    color:#fff;
    transition:all 0.15s;
}

a:hover {
    opacity: 0.9;
}

/*Navabar Section*/
nav.navbar {
    background: #305B5D;
}

a.navbar-brand {
    color: #fff;
    font-size: 2.15rem;
    font-weight: 600;
    font-family: 'Ubuntu', serif;
}

a.navbar-brand span {
    color: var(--btn-primary);
}

a.nav-link {
    display: block;
    color: #fff;
    padding: 8px 32px !important;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-link.login-btn {
    background: var(--btn-primary);
    color: #000;
}

.nav-link.register-btn {
    background: var(--btn-secondary);
    color: #fff !important;
}

.navbar-nav.d-flex {
    flex-direction: row;
    gap: 3rem;
}

/* End Navabar Section*/

/*Hero Section*/
.hero {
    height: max-content;
    background: #17254d;
    background-image: linear-gradient(to bottom, #1b4a42, transparent);
    margin-bottom: 5rem;
    padding-top: 5rem;
}

.hero h1 {
    padding-bottom: 0px;
    margin-top: 3rem;
    font-size: 2.5rem;
    white-space: nowrap;
}

.hero h1 span {
    color: #ffc107;
}

.hero .start-earning-button {
    color: #000;
    text-decoration: none;
    font-size: 1.15rem;
    text-align: center;
    display: block;
    margin: 3rem 0;
    background: var(--btn-primary);
    padding: 0.75rem 2rem;
    border-radius: 25px;
}

.hero-img .img-fluid {
    border-radius: 9px;
    opacity: 0.7;
    padding-bottom: 5rem;
}

/*Partner Sections*/
section#partners {
    padding-bottom: 5rem;
}

.partner-box {
    height: 110px;
    width: 100%;
    border: 2px solid #4b362d;
    border-radius: 14px;
    margin-bottom: 3rem;
    background: linear-gradient(to top, #533c2e, #b1793d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem;
    box-shadow: 1px 1px 5px 0px #00021230;
}

.partner-box img {
    height: 100%;
    width: 100%;
}


/*statists*/
section#statists {
    min-height: 15rem;
    background: linear-gradient(to top, #664d035c, #755e2e9c), linear-gradient(to bottom, #664d0314, #755e2e00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    padding: 1rem;
}

.stats-box {
    text-align: center;
    font-size: 1.5rem;
    background: #674e0642;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-radius: 5px;
    filter: drop-shadow(2px 1px 0px rgba(0,0,0, 0.15));
}

/*Footer*/
footer {
    margin: 0 !important;
    background: linear-gradient(to top, #17274c, #1b4843);
    min-height: 7rem;
    text-align: center;
    padding-top: 1rem;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff !important;
    background: rebeccapurple;
    margin-right: 9px;
    width: 40px;
    display: inline-block;
    border-radius: 5px;
    padding: 2px 5px !important;
}


a.facebook {
    background: #0d6efd;
}

a.twitter {
    background: black;
}


a.instagram {
    background: #ffc107;
    color: #000 !important;
}

a.youtube {
    background: #dc3545;
}