@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Special+Gothic&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: linear-gradient(to bottom right, #1C1C1C, black, #1C1C1C);
    background-size: cover;
}

.main {
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.maintext {
    display: inline-block;                /* shrink‑wrap to the text */
    font-family: Montserrat;
    font-size: 100px;
  
    /* kill old white box & blend */
    background-color: transparent;
    mix-blend-mode: normal;
  
    /* fill only the glyphs with your money image */
    background: url("../files/money.jpg") no-repeat center/cover;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    /* for WebKit/Safari to honor the transparent text */
    -webkit-text-fill-color: transparent;
}

.cftxt {
    font-family: Montserrat;
    font-style: italic;
    font-weight: 300;
    color: white;
}

.b {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.whatnow {
    color: white;
}

.txtbg {
    background: url("../files/money.jpg");
}

header li, a {
    font-family: Montserrat;
    list-style: none;
    color: #C2C2C2;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001B2E;
    height: 80px;
    padding: 30px 10%;
}

.logo {
    cursor: pointer;
    height: 120px;
}

.navlinks {
    display: flex;
}

header li {
    padding: 0px 40px;
}

.navlinks li a {
    transition: all 0.3s ease 0s;
}

.navlinks li a:hover {
    color: white;
    font-weight: 800;
    font-size: 15px;
}