@font-face {
    font-family: 'Mokoto';
    src: url('../../font/Mokoto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    letter-spacing: 5px !important;
}

* {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

::selection {
    background-color: white;
    color: #000;
}

::-moz-selection {
    background-color: white;
    color: #000;
}

input::placeholder,
textarea::placeholder {
    color: white;
    /* Change to your desired color */
    opacity: 1;
    /* Optional: Ensures the placeholder is fully opaque */
}

body {
    background-color: #000;
    color: #fff;
}

#navbarNav ul li {
    overflow: hidden;
}

nav .navbtn {
    color: rgb(0, 0, 0);
    background-color: #fff;
    border-radius: 4px;
}

.nexornova-logo {
    font-family: "Mokoto";
    position: relative;
    top: 4px;
    color: #fff;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 3px !important;
}

#navbarNav ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 10px 15px;
}

#navbarNav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

#navbarNav ul li a:hover::before {
    transform: translateY(0);
    background-color: grey;
}

.btn-type {
    text-decoration: none;
    color: #fff;
}

.btn-type:hover {
    text-decoration: none;
    color: #fff;
}

footer {
    background-color: #000;
    padding: 20px 0;
}

#footer {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#footer li {
    margin: 0 15px;
}

#footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #0008ff;
}

#copyright {
    display: flex;
    font-weight: 100;
    font-size: small;
    align-items: center;
}

#scrollTopBtn {
    cursor: pointer;
    opacity: 0;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    background-color: #ffffff;
    z-index: 1000;
    margin: 24px;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    position: fixed;
    bottom: 10px;
    left: 0px;
}

#scrollTopBtn.flex {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

#scrollTopBtn svg {
    font-weight: 700;
}