:root {
      --font1: "Inter", sans-serif;
      --font2: "Edu VIC WA NT Hand Pre", cursive;
      --font3: "Lexend Deca", sans-serif;
      --font4: "Kumbh Sans", sans-serif;
      --font5: "Arvo", serif;
    }

html,
body {
    overflow-x: hidden;
}

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

body {
    /* opacity: 0; */
    transition: opacity 0.5s ease;
    font-family: var(--font1);
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #000;
    flex-wrap: wrap;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 0;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: right;
    flex-grow: 1;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #00ffe0;
}

.sign_up:hover {
    color: #fffb00;
}