/* TRUE GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "coolvetica", monospace;
    letter-spacing: 0.5px;
    caret-color: transparent;
    scroll-behavior: smooth;
}

/* FONTS */
@font-face {
    font-family: 'coolvetica';
    src: url('../font/coolvetica.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* NAV STYLING */
header {
    user-select: none;
    z-index: 101;
    position: relative;
    border-bottom: 2px solid white;
    background-color: black;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#title a {
    position: relative;
    text-decoration: none;
    font-size: 4rem;
    color: wheat;
    text-shadow: 2px 2px black;
}

.short {
    display: none;
}

@media (max-width: 768px) {
    .full {
        display: none;
    }

    .short {
        display: inline;
    }
}

/* HAMBURGER BUTTON */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    margin-left: auto;
}

#hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    #hamburger {
        display: flex;
    }

    #nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        display: none;
        flex-direction: column;
        text-align: center;
    }

    #nav-menu.open {
        display: flex;
    }

    .item {
        display: block;
    }

    #nav-menu a {
        background-color: black;
        border: 1px solid white;
        width: 12rem;
        font-size: 1.3rem;
    }
}


#nav-menu {
    /* border: 2px dashed paleturquoise; */
    text-align: right;
    border-radius: 5px;
}

.item {
    display: inline-block;
    margin-right: 10px;
}

#nav-menu a {
    user-select: none;
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 1.2rem;
    text-shadow: 2px 2px black;
    transition: background-color 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

#nav-menu a.active{
    color: black;
    background-color: wheat;
    border: 1px solid black;
    border-radius: 5px;
    text-shadow: none;
}

#nav-menu a:hover {
    color: black;
    background-color: wheat;
    border: 1px solid black;
    text-shadow: none;
}

body {
    /* border: 2px dashed pink; */
    background-color: black;
    color: white;
}

footer {
    text-align: center;
    border-top: 2px solid white;
    padding: 2rem;
    color: white;
}

#priv-pol {
    color: red;
}

#priv-pol:hover {
    color: rgb(255, 150, 150);
}