* {
    box-sizing: border-box;
    cursor: url('../assets/joint.png'), auto !important;
    margin: 0;
    padding: 0;
}

a, button, [role="button"], input, select, textarea {
    cursor: url('../assets/joint.png'), auto !important;
}

body {
    background: #0b0f0c;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 90px;
}

/* BUTTON */
.btn {
    background: #4ade80;
    border-radius: 8px;
    color: #000;
    display: inline-block;
    font-weight: 600;
    padding: 10px 18px;
    text-decoration: none;
}

/* NAV */
.nav {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.6);
    display: flex;
    height: 90px;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* LOGO */
.logo {
    align-items: center;
    color: #4ade80;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: auto;
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    margin-top: auto;
    padding: 30px 20px;
    text-align: center;
}

.footer-btn {
    background: #222;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    margin: 5px;
    padding: 10px 18px;
    text-decoration: none;
}

.footer-btn:hover {
    background: #4ade80;
    color: #000;
}

/* TABLET */
@media (min-width: 768px) {
    .nav {
        padding: 0 40px;
    }
}

/* DESKTOP */
@media (min-width: 1200px) {
    .nav {
        padding: 0 60px;
    }
}