@font-face{
    font-family: "CenturyGothic";
    src: url("/fonts/CenturyGothic.ttf") format("truetype");
    font-weight: 200;
	font-style: normal;
	font-stretch: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
}

@font-face {
    font-family: "DancingScript";
    src: url(/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf);
    font-weight: 200;
	font-style: normal;
	font-stretch: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
}

:root{
    --clr: #fff;
}

html{
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "CenturyGothic", Helvetica, Arial, sans-serif;
    color: #000;
    background-color: var(--clr);
    overflow-x: hidden;
    width: 100%;
}

.spacer {
    min-height: 120px;
}

.mobileSpacer {
    display: none;
}

@media (max-width:500px) {
    .spacer {
        min-height: 200px;
        background-color: red;
    }

    .mobileSpacer {
        display: flex;
        min-height: 100px;
    }
}

/* header css */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-weight: 200;
    font-size: 3.6rem;
    color: #fff;
    text-decoration: none;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 1.8rem;
    padding: 2rem;
    color: #fff;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

header .navbar ul li a:hover {
    background: #333;
    color: #fff;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #000;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}

#menu-bar{
    display: none;
}

header label {
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
    display: none;
}





@media(max-width:991px){
    header{
        padding: 2rem;
    }

    .logo {
        font-weight: 200;
        font-size: 4rem;
    }

    header label {
        display: initial;
    }
    
    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        border-top: 1px solid rgba(0, 0, 0, .1);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #000;
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }
}

@media (max-width:500px) {
    header{
        width: 100%;
        justify-content: center;
    }

    .logo {
        font-size: 2.5rem;
    }

    .headerLogo {
        width: 70px;
        height: 70px;
    }

    header label {
        display: none;
    }
}