/* 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-family: "Quicksand" , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }   


nav{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: +1;
  }
nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ff00e6;
  
  }
      
nav > ul > li {
    float: right;
    padding: 20px;
  }

nav > ul > li > a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    position: relative;
  }

nav > ul > li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: aliceblue;
    transition: width 0.3s ease;
}
nav > ul > li a:hover::after{
    width: 100%;
}

@media (max-width: 800px) {

  nav > ul > li > a:not(#home):not(#menu) {
    display: none;
  }

  #menu {
    /* border: 1px dotted black; */
    margin-right: auto;
  }

  nav > ul > li:not(.NOTsmall) {
    padding: 0px;
  }
}

@media (min-width: 800px) {
  #menu, #myLinks {
    display: none;
  }
}

#myLinks {
  display: none;
}

/* li {border: 2px black dotted} */
#menu{scale: 155%}


.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  position: absolute;
  top: 65px;
  width: 100%;
  z-index: -1;
  background-image: url('GlobalImages/DogWithDonut.jpg');
  background-position: 10px;
  background-size: 100%;
  color: aliceblue;
  font-size: 4vw;
}

a{
  text-decoration: none;
  color: aliceblue;
}

#myLinks {
  list-style-type: none;
  background-color: darkmagenta;
  width: 50vw;
  font-size: 4vw;
  color: aliceblue;
  border-radius: 30px;
  margin: 10px;
  position: fixed;
  right: 10px;
  top: 60px;
  z-index: +11000
}
#myLinks > li{
  padding: 30px
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #ff00e6;
    color: aliceblue;
    padding: 10px;
}