@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

body {
    margin: 0;
    background: #1c1e25;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 5rem;
}

.nav-logo {
    height: 5rem;
    margin: .5rem;
}

.link {
    color: #fff;
    transition: color .5s;
    text-decoration: none;
}

.link:hover { 
    color: #cecece;
}

.nav-link {
    text-transform: uppercase;
    margin: 0 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.store {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9911f;
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    width: 10rem;
    height: 3rem;
    border-radius: 100000px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out, letter-spacing 0.5s ease-in-out;
}

.store:hover {
    background-color: #ad6c17;
    letter-spacing: 4px;
}

main {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.content {
    width: 100%;
}

.main-page {
    height: calc(100vh - 96px);
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/AnnjgV3.png") no-repeat;
    mask-image: linear-gradient(to bottom, transparent 1%, black 75%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 1%, black 75%);
    background-size: cover;
    z-index: -1;
    max-height: calc(100vh - 96px);
}

.fade {
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 1%, rgba(0,0,0,0) 63%, rgba(0,0,0,0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.maniacube {
    font-size: 5rem;
}

.maniadesc {
    font-size: 1.5rem;
}

span.maniacube {
    color: #872EE0;
}