/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
     
 body {
background-image: url('https://i.pinimg.com/736x/aa/74/09/aa7409809c55934ae3531968617ff475.jpg');
background-attachment: fixed;
background-size: auto 130%;
overflow: hidden;
}

html {
  overflow: scroll;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 0; /* remove scrollbar space */
  background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
  background: transparent;
}

  ::selection {
/* Change highlight background color */
background: #f7abcf;
/* Change highlight text color */
color: #FFFFFF;
}

.box {
  margin: 50px auto;
}

header {
  border: 3px solid black;
  background-color: gray;
}

nav {
  border: 3px solid black;
  background-color: gray;
}

main {
  display: grid;
  border: 3px solid black;
  background-color: gray;
  height: fit-content;
}

footer {
  border: 3px solid black;
  background-color: gray;
}





