:root {
    /* sizes */
    /* Extra small devices (phones, 600px and down) */
    --xs-width: 600px;
    /* Small devices (portrait tablets and large phones, 600px and up) */
    --sm-width: 601px;
    /* Medium devices (landscape tablets, 768px and up) */
    --md-width: 768px;
    /* Large devices (laptops/desktops, 992px and up) */
    --lg-width: 992px;
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    --xl-width: 1200px;

    --accent: #e337c6;
    --text-light: #f2f2f2;
}

.logo {
    width: clamp(200px, 30vw, 380px);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .logo {
        width: clamp(300px, 30vw, 400px);
        height: clamp(30px, 10vw, 50px);
    }
}

.nav {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

header {
    background-color: #333;
}

.desktopNavBar {
    /* overflow: hidden; */
    display: flex;
    margin-left: auto;
    align-items: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .desktopNavBar {
        display: none;
    }
}

.navLink {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    font-size: clamp(12px, 2vw, 24px);
    font-family: montserrat, sans-serif;
}

.navLink:hover {
    color: var(--accent);
}

.mobileNavLink {
    /* float: left; */
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
    font-family: montserrat, sans-serif;
}

.active {
    color: var(--accent);
    font-weight: 800;
}

.signupButton {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: radial-gradient(farthest-corner at 100% 0, #e21ee9 0, #5a54c6 100%);
    border-radius: 12px;
    border-width: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 60px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    margin-left: 16px;
    padding-left: 22px;
    padding-right: 22px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 22px;
    font-family: montserrat, sans-serif;
    font-weight: 600
}

@media only screen and (max-width: 600px) {
    .signupButton {
        margin-left: 0px;
    }
}

.signupButton:hover {
    transform: translateY(-4px);
    color: white;
    background-color: white;
}

.signupButton:visited {
    text-decoration: none;
    color: white;
}

.signupButton:active {
    text-decoration: none;
    color: white;
}

.navToggleButton {
    display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .navToggleButton {
        display: inline-block;
        cursor: pointer;
        margin-left: auto;
    }
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.mobileNavDropdown {
    display: none;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .mobileNavDropdown {
        display: flex;
    }
}