html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to right, #ffcc99 0%, #99ccff 100%);
  color: black;
  font-family: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
  font-weight: normal;
  font-size: larger;
  align-content: center;
  margin-bottom: 100px;
  background-image: url('images/bgstill.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

embed {
  width: 100%;
  height: 300px;
  background-color: whitesmoke;
  border: black solid 1px;
}

img{
  max-width: 100%;
}

input {
  opacity: 0.3;
}

textarea {
  opacity: 0.3;
  width: 100%;
}

iframe {
  max-width: 100%;
}

a:visited {
  color: #cc8100;
}

#menudetails {
  color: #ffffff;
  padding: 10px;
      position: sticky;
      font-size: 32px;
      font-weight: normal;
      top: 0;
      float: right;}


#topheader {width: auto;
position: sticky;
top: 0;}

#notheader {
  background: rgba(255, 255, 255, 0.7);
  margin: auto;
  padding: 50px;
  margin-top: 50px;
  width: 50%;
}

/* for centering images */

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.right {
  float: right;
}

/*for scrolling gallery stuff*/

div.scroll-container {
  background-color: white;
  overflow: auto;
  white-space: nowrap;
  border: 10px white solid;
}

div.scroll-container img {
  height: 500px;
  max-width: inherit;
  padding-right: 10px;
}

/* For mobile fitting */

@media only screen and (max-width: 1000px) {
  #topheader {
    position: static;
  }
  #notheader{
    width: 90%;
    padding: 10px;
  }
  body{
  background-image: url('images/bgstill.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  }
}


