@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    transition: 0.25s ease;
    /* animation: slideIn 0.25s cubic-bezier(0.33, 0.85, 0.4, 0.96) forwards; */
}


body {
    background-color: black;
    color: #979797;
}

header {
    display: flex;
    z-index: 200;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    height: 4rem;
    border-bottom: 1px solid #434343;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
}

.text-white {
    color: white;
}

header>img {
    width: 150px;
}

header>ul {
    display: flex;
    gap: 1.5rem;
}

header>ul>li {
    list-style: none;
}

header>ul>li>a {
    color: #979797;
    text-decoration: none;
    font-size: .89rem;
}

header>ul>li>a:hover {
    color: white
}



/* mobile */
@media screen and (max-width: 480px) {
    header {
            padding: 0 15px;
        }
    
        header>ul {
            display: none;
        }
}