@font-face {
    font-family: 'Quicksand';
    src: url('/assets/fonts/quicksand/Quicksand_VariableFont_wght.woff2') format('woff2'),
         url('/assets/fonts/quicksand/Quicksand_VariableFont_wght.woff') format('woff2');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
  }

body *{
    outline: 1px solidred;
}

html {
    scroll-behavior: smooth; 
}

*, *::before, *::after {
    box-sizing: border-box;
}

.no-scroll {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
    color: inherit;
}

ul{
    padding-inline-start: 0;
}

.glance{
    overflow: hidden;
}

.glance::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0.3) 30%,
            rgba(255, 255, 255, 0.3) 70%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    transition: 0.4s ease;
    transform: translateX(0);
    pointer-events: none;
}

.glance:hover::before {
    left: 100%;
}

.br1{
    background: linear-gradient(135deg, #d4af37, #f0e299);
}

.br2{
    background: linear-gradient(135deg, #000, #363636);
}
