/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  @font-face {
    font-family: "Quicksand";
    src: url(/Fonts/Quicksand-Regular.ttf);
}

* {
    font-family: "Quicksand" , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

*{
  word-wrap: break-word;
}

  /* ///////// */

@font-face {
    font-family: "Quicksand";
    src: url(/Fonts/Quicksand-Regular.ttf);
}

* {
    font-family: "Quicksand" , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.charm-regular {
  font-family: "Charm", cursive;
  font-weight: 400;
  font-style: normal;
}

.charm-bold {
  font-family: "Charm", cursive;
  font-weight: 700;
  font-style: normal;
}


section{
  margin: 10px 20%;
}


nav{
  position: sticky;
  position: -webkit-sticky;
  top:0
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
  /* z-index: +10; */

}
    
li {
  float: right;
}
    
li a {
  display: block;
  color: white;
  text-align: center;
  /* padding: 0px 16px; */
  text-decoration: none;
  position: relative;
}
  
/* li a:hover {
  background-color: #111;
  transform: scale(1.05)
} */


.menu a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: aliceblue;
    transition: width 0.3s ease;
}
.menu a:hover::after{
    width: 100%;
}

#myLinks {
  display: none;
}
@media (max-width: 800px)  {
    .rightmenu{
        display: none;      
    }
    article {
      margin: 0px 4%;
    }
  }

@media (min-width: 800px) {
    .burgmenu{
        display: none;
    }
    article{
      margin: 0px 10%;
    }
  }

  .menu, .burgmenu{
    /* border: 1px dotted green; */
    margin: 16px 16px;
}
.burgmenu{
    scale: 125%;
}

.dropdownnav{
  display: flex;
  flex-direction: column;
  justify-content: right;
  padding: 20px;
  background-color: rgb(44, 44, 44);
  /* border: 2px dashed greenyellow; */
  width: 250px;
  position: absolute;
  top: 56px;
  right: 0;
  height: 900px;
}
.dropdownnav > li > a, .dropdownnav > h3{
  /* border: 2px dashed greenyellow; */
  text-align: right;
  margin: 20px 0px;
  color: aliceblue;
}

a{
    text-decoration: none;
    color: aliceblue;
}

footer > p > a:hover {
    color: rgb(169, 169, 169);
}

footer{
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: white;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: +10;
    margin-top: 30px;
  }