:root {
    --background: #1a1320;
    --primary: #b13830;
    --secondary: #dd671f;
}

* {
    font-family: "Rajdhani", sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);

    color: #fff;

    /* scroll smoothly */
    scroll-behavior: smooth;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0px max(calc((100% - 50rem) / 2), 25px) 0px
        max(calc((100% - 50rem) / 2), 25px);
}

nav img {
    width: clamp(75px, 12vw, 100px);
    height: clamp(75px, 12vw, 100px);
}

a {
    text-decoration: none;
    color: var(--secondary);

    font-size: clamp(1rem, 2.75vw, 1.5rem);

    position: relative;
}
a::after {
    /* Use the parent text */
    color: var(--primary);
    content: "Tour";
    display: none;
    position: absolute;
    top: 4px;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: -1;

    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary);
}
